diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2015-08-27T03·03+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2015-08-27T03·03+0800 |
commit | 5f9f6737912f2a18f7adfff8c6f3ef8162ca52f1 (patch) | |
tree | 9c3a59f8ca6bcddd72871a7b5207ed9a993fbb88 /exwm-floating.el | |
parent | bb4ebde55b3bdd903cfc3bcaba3001957763c83d (diff) |
Fix window size calculations
* When sending the synthetic ConfigureNotify event, make sure we are dealing with the correct Emacs window * When managing a floating window, ensure it can be easily pick up by the user
Diffstat (limited to 'exwm-floating.el')
-rw-r--r-- | exwm-floating.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/exwm-floating.el b/exwm-floating.el index 8c2a8f4998d9..0b4f327f8b71 100644 --- a/exwm-floating.el +++ b/exwm-floating.el @@ -98,8 +98,8 @@ width display-width)) ;; Invalid width (when (= 0 width) (setq width (/ display-width 2))) - ;; Completely outsize - (when (or (> x display-width) (> 0 (+ x display-width))) + ;; Make sure at least half of the window is visible + (when (or (> (+ x (/ width 2)) display-width) (> 0 (+ x (/ width 2)))) (setq x (/ (- display-width width) 2)))) (if (> height display-height) ;; Too tall @@ -107,8 +107,9 @@ height display-height) ;; Invalid height (when (= 0 height) (setq height (/ display-height 2))) - ;; Completely outside - (when (or (> y display-height) (> 0 (+ y display-height))) + ;; Make sure at least half of the window is visible + (when (or (> (+ y (/ height 2)) display-height) + (> 0 (+ y (/ height 2)))) (setq y (/ (- display-height height) 2)))) ;; Center floating windows (when (and (= x 0) (= y 0)) |