manage: For isfloating/oldstate check/set, ensure trans client actually exists bece862a
In certain instances trans may be set to a window that doesn't actually
map to a client via wintoclient; in this case it doesn't make sense
to set isfloating/oldstate since trans is essentially invalid in that
case / correlates to the above condition check where trans is set /
XGetTransientForHint is called.
Miles Alan · 2022-02-21 01:10 1 file(s) · +1 −1
dwm.c +1 −1
1064 1064
	XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
1065 1065
	grabbuttons(c, 0);
1066 1066
	if (!c->isfloating)
1067 -
		c->isfloating = c->oldstate = trans != None || c->isfixed;
1067 +
		c->isfloating = c->oldstate = t || c->isfixed;
1068 1068
	if (c->isfloating)
1069 1069
		XRaiseWindow(dpy, c->win);
1070 1070
	attach(c);