diff options
author | xyz <gky44px1999@gmail.com> | 2022-04-04 00:15:22 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2022-04-04 00:15:22 -0700 |
commit | c04aac4eed5a15afe00643f4567ec977e8a98bed (patch) | |
tree | 652781a62ef65479aee6eaab3d077cc6b06c6a21 | |
parent | 1d0b29e219b16f2d5bd9f07893d7b861b060f2ac (diff) | |
parent | bece862a0fc4fc18ef9065b18cd28e2032d0d975 (diff) |
Merge branch 'master' into fly
-rw-r--r-- | dwm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -488,6 +488,7 @@ cleanup(void) drw_cur_free(drw, cursor[i]); for (i = 0; i < LENGTH(colors); i++) free(scheme[i]); + free(scheme); XDestroyWindow(dpy, wmcheckwin); drw_free(drw); XSync(dpy, False); @@ -1064,7 +1065,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); |