Merge branch 'master' into mybuild
Prithu Goswami prithugoswami524@gmail.com
Sun, 02 May 2021 17:26:49 +0530
M
dwm.c
→
dwm.c
@@ -454,7 +454,7 @@ click = ClkTagBar;
arg.ui = 1 << i; } else if (ev->x < x + blw) click = ClkLtSymbol; - else if (ev->x > selmon->ww - TEXTW(stext)) + else if (ev->x > selmon->ww - (int)TEXTW(stext)) click = ClkStatusText; else click = ClkWinTitle;@@ -974,7 +974,7 @@ focusstack(const Arg *arg)
{ Client *c = NULL, *i; - if (!selmon->sel) + if (!selmon->sel || selmon->sel->isfullscreen) return; if (arg->i > 0) { for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);