From b039615084d5a0d1099e61af558ff56bb63abe60 Mon Sep 17 00:00:00 2001 From: Morgan Aldridge Date: Sun, 5 Sep 2021 10:53:24 -0400 Subject: [PATCH] Uncomment setting tmp_win->frame_x & tmp_win->frame_y in handle_configure_request() to fix xdotool not moving windows. Issue #25 --- mlvwm/event.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mlvwm/event.c b/mlvwm/event.c index 30c6372..3d2a04e 100644 --- a/mlvwm/event.c +++ b/mlvwm/event.c @@ -441,10 +441,10 @@ void handle_configure_request( XEvent *ev ) if (xcr->value_mask & CWWidth) width = xcr->width+12; if (xcr->value_mask & CWHeight) height = xcr->height+12; } -/* + tmp_win->frame_x = x<0 ? 0 : x; tmp_win->frame_y = ywin_w = width; tmp_win->win_h = height;