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
This commit is contained in:
parent
bb4ebde55b
commit
5f9f673791
2 changed files with 6 additions and 5 deletions
|
@ -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))
|
||||
|
|
|
@ -289,7 +289,7 @@ corresponding buffer.")
|
|||
(frame-pixel-height exwm-workspace--current))
|
||||
(or exwm--floating-edges
|
||||
(window-inside-absolute-pixel-edges
|
||||
(get-buffer-window)))))
|
||||
(get-buffer-window buffer t)))))
|
||||
(exwm--log "Reply with ConfigureNotify (edges): %s" edges)
|
||||
(xcb:+request exwm--connection
|
||||
(make-instance 'xcb:SendEvent
|
||||
|
|
Loading…
Reference in a new issue