diff options
Diffstat (limited to 'exwm-input.el')
-rw-r--r-- | exwm-input.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/exwm-input.el b/exwm-input.el index 9e98c62e12c7..7f174c2ad757 100644 --- a/exwm-input.el +++ b/exwm-input.el @@ -767,7 +767,11 @@ Its usage is the same with `exwm-input-set-simulation-keys'." ;; Re-grab global keys. (add-hook 'exwm-workspace-list-change-hook #'exwm-input--on-workspace-list-change) - (exwm-input--on-workspace-list-change)) + (exwm-input--on-workspace-list-change) + ;; Prevent frame parameters introduced by this module from being + ;; saved/restored. + (dolist (i '(exwm-grabbed)) + (push (cons i :never) frameset-filter-alist))) (defun exwm-input--exit () "Exit the input module." |