branch: externals/exwm commit 3179085c2962b73eefe515b3599e87575fbe6a13 Author: Steven Allen <ste...@stebalien.com> Commit: GitHub <nore...@github.com>
Use the correct value masks when resizing/moving (#75) * exwm-floating.el (exwm-floating--do-moveresize): use the correct value masks when resizing/moving floating windows. --- exwm-floating.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exwm-floating.el b/exwm-floating.el index 70b4377600..9a7a92d3f6 100644 --- a/exwm-floating.el +++ b/exwm-floating.el @@ -722,14 +722,14 @@ Float resizing is stopped when TYPE is nil." (make-instance 'xcb:ConfigureWindow :window (frame-parameter exwm--floating-frame 'exwm-outer-id) - :value-mask value-mask + :value-mask resize-value-mask :width width :height height))) (when (/= 0 move-value-mask) (xcb:+request exwm--connection (make-instance 'xcb:ConfigureWindow :window exwm--id - :value-mask value-mask + :value-mask move-value-mask :x (+ x exwm-floating-border-width) :y (+ y exwm-floating-border-width))))))) (xcb:flush exwm--connection))))