mirror of
https://github.com/ch11ng/exwm.git
synced 2024-11-27 04:58:00 +01:00
Add message-box and message-or-box to exwm-blocking-subrs (fix #874)
* exwm.el (exwm-blocking-subrs): Add `message-box' and `message-or-box' to the list of blocking subrs.
This commit is contained in:
parent
56db521a3e
commit
50681727e3
1 changed files with 3 additions and 1 deletions
4
exwm.el
4
exwm.el
|
@ -97,7 +97,9 @@
|
|||
"Normal hook run when window title is updated."
|
||||
:type 'hook)
|
||||
|
||||
(defcustom exwm-blocking-subrs '(x-file-dialog x-popup-dialog x-select-font)
|
||||
(defcustom exwm-blocking-subrs
|
||||
(list #'x-file-dialog #'x-popup-dialog #'x-select-font
|
||||
#'message-box #'message-or-box)
|
||||
"Subrs (primitives) that would normally block EXWM."
|
||||
:type '(repeat function))
|
||||
|
||||
|
|
Loading…
Reference in a new issue