~ruther/dwl

bb21ecda30e041fb957eca42947e093758cdf75a — Leonardo Hernández Hernández 1 year, 2 months ago b25717c
improve checking in configurex11()

this avoids a client resizing itself when the user is interactively resizing
the client
1 files changed, 2 insertions(+), 1 deletions(-)

M dwl.c
M dwl.c => dwl.c +2 -1
@@ 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