renamed scratchpads: auto-unhide a minimised (icon state) scratchpad when toggled

pull/380/head
bakkeby 8 months ago
parent ddb2e833a4
commit dd1660b1ed

@ -66,12 +66,13 @@ togglescratch(const Arg *arg)
if (c->scratchkey != ((char**)arg->v)[0][0]) if (c->scratchkey != ((char**)arg->v)[0][0])
continue; continue;
/* awesomebar / wintitleactions compatibility, unhide scratchpad if hidden #if BAR_WINTITLEACTIONS_PATCH
/* unhide scratchpad if hidden */
if (HIDDEN(c)) { if (HIDDEN(c)) {
XMapWindow(dpy, c->win); XMapWindow(dpy, c->win);
setclientstate(c, NormalState); setclientstate(c, NormalState);
} }
*/ #endif // BAR_WINTITLEACTIONS_PATCH
/* Record the first found scratchpad client for focus purposes, but prioritise the /* Record the first found scratchpad client for focus purposes, but prioritise the
scratchpad on the current monitor if one exists */ scratchpad on the current monitor if one exists */

Loading…
Cancel
Save