1
0
mirror of git://git.suckless.org/dwm synced 2025-07-25 17:22:07 -07:00
This commit is contained in:
Anselm R Garbe
2009-07-02 20:38:56 +01:00
parent a9e145fe6d
commit cd96232f7e

5
dwm.c
View File

@@ -625,9 +625,10 @@ Monitor *
dirtomon(int dir) {
Monitor *m = NULL;
if(dir > 0)
if(dir > 0) {
if(!(m = selmon->next))
m = mons;
}
else {
if(selmon == mons)
for(m = mons; m->next; m = m->next);
@@ -1521,7 +1522,7 @@ tag(const Arg *arg) {
void
tagmon(const Arg *arg) {
if(!selmon->sel || !mons->next)
return
return;
sendmon(selmon->sel, dirtomon(arg->i));
}