added statusbar update when tags are updated

このコミットが含まれているのは:
David Donahue 2021-02-07 01:03:04 -06:00
コミット 27598bd04a
1個のファイルの変更4行の追加0行の削除

4
dwl.c
ファイルの表示

@ -2200,6 +2200,7 @@ tag(const Arg *arg)
focusclient(focustop(selmon), 1);
arrange(selmon);
}
statusbar();
}
void
@ -2269,6 +2270,7 @@ toggletag(const Arg *arg)
focusclient(focustop(selmon), 1);
arrange(selmon);
}
statusbar();
}
void
@ -2281,6 +2283,7 @@ toggleview(const Arg *arg)
focusclient(focustop(selmon), 1);
arrange(selmon);
}
statusbar();
}
void
@ -2361,6 +2364,7 @@ view(const Arg *arg)
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
focusclient(focustop(selmon), 1);
arrange(selmon);
statusbar();
}
void