improve checking in configurex11()

this avoids a client resizing itself when the user is interactively resizing
the client
This commit is contained in:
Leonardo Hernández Hernández 2024-08-08 14:33:03 -06:00
parent b25717c939
commit bb21ecda30
No known key found for this signature in database
GPG key ID: E538897EE11B9624

3
dwl.c
View file

@ -638,6 +638,7 @@ buttonpress(struct wl_listener *listener, void *data)
/* Drop the window off on its new monitor */
selmon = xytomon(cursor->x, cursor->y);
setmon(grabc, selmon, 0);
grabc = NULL;
return;
} else {
cursor_mode = CurNormal;
@ -3090,7 +3091,7 @@ configurex11(struct wl_listener *listener, void *data)
event->x, event->y, event->width, event->height);
return;
}
if (c->isfloating)
if ((c->isfloating && c != grabc) || !c->mon->lt[c->mon->sellt]->arrange)
resize(c, (struct wlr_box){.x = event->x, .y = event->y,
.width = event->width + c->bw * 2, .height = event->height + c->bw * 2}, 0);
else