diff options
author | Miles Alan <m@milesalan.com> | 2022-02-21 01:10:56 -0500 |
---|---|---|
committer | rafa_99 <raroma09@gmail.com> | 2022-03-15 09:52:38 +0000 |
commit | 6a23af124fb416385dfd3e5cc49b466f9b53cb46 (patch) | |
tree | b0ebda3f540366456bd9865ac9f7750c49816f3c /dwm.c | |
parent | c9af6350f76f3b430eef9b6861b1e3095ef2db2c (diff) |
manage: For isfloating/oldstate check/set, ensure trans client actually exists
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.
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1155,7 +1155,7 @@ manage(Window w, XWindowAttributes *wa) XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask); grabbuttons(c, 0); if (!c->isfloating) - c->isfloating = c->oldstate = trans != None || c->isfixed; + c->isfloating = c->oldstate = t || c->isfixed; if (c->isfloating) XRaiseWindow(dpy, c->win); attach(c); |