From 3179085c2962b73eefe515b3599e87575fbe6a13 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Sun, 18 Aug 2024 15:01:50 +0000 Subject: [PATCH] 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 70b4377..9a7a92d 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))))