diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2015-08-13T04·02+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2015-08-13T04·02+0800 |
commit | 07e59e0429c4b13a5036e9a207e37fc02135f599 (patch) | |
tree | d8bdf8d27ecdbbb115775e0ca8a1b4e4f91ea58f /exwm.el | |
parent | 35560a49d6c03f96c1f62bfee72ee667cffadb9e (diff) |
Fix multi-screen bugs
* RandR module is now made optional; users can enable it with `exwm-randr-enable`. * Correct the calculation of sizes/coordinates at various places. * Input focus is now tracked with (Emacs) window instead of buffer since the latter can be ambiguous in multi-screen settings.
Diffstat (limited to 'exwm.el')
-rw-r--r-- | exwm.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/exwm.el b/exwm.el index d33ab2619044..7dffa87aec4b 100644 --- a/exwm.el +++ b/exwm.el @@ -144,7 +144,6 @@ (require 'exwm-floating) (require 'exwm-manage) (require 'exwm-input) -(require 'exwm-randr) (defvar exwm-debug-on nil "Non-nil to turn on debug for EXWM.") @@ -616,7 +615,6 @@ (exwm-floating--init) (exwm-manage--init) (exwm-input--init) - (exwm-randr--init) (exwm--unlock) ;; Manage exiting windows (exwm-manage--scan) |