fix: dont use evenmask
This commit is contained in:
@@ -503,7 +503,7 @@ int setlayout(const Arg *arg) {
|
||||
selmon->pertag->ltidxs[selmon->pertag->curtag] = &layouts[jk];
|
||||
clear_fullscreen_and_maximized_state(selmon);
|
||||
arrange(selmon, false);
|
||||
printstatus(PRINT_ALL);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -517,7 +517,7 @@ int setkeymode(const Arg *arg) {
|
||||
} else {
|
||||
keymode.isdefault = false;
|
||||
}
|
||||
printstatus(PRINT_KEYMODE);
|
||||
printstatus();
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -866,7 +866,7 @@ int switch_keyboard_layout(const Arg *arg) {
|
||||
wlr_seat_keyboard_notify_modifiers(seat, &tkb->modifiers);
|
||||
}
|
||||
|
||||
printstatus(PRINT_KB_LAYOUT);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -907,7 +907,7 @@ int switch_layout(const Arg *arg) {
|
||||
}
|
||||
clear_fullscreen_and_maximized_state(selmon);
|
||||
arrange(selmon, false);
|
||||
printstatus(PRINT_ALL);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -918,7 +918,7 @@ int switch_layout(const Arg *arg) {
|
||||
jk == LENGTH(layouts) - 1 ? &layouts[0] : &layouts[jk + 1];
|
||||
clear_fullscreen_and_maximized_state(selmon);
|
||||
arrange(selmon, false);
|
||||
printstatus(PRINT_ALL);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -1260,7 +1260,7 @@ int toggletag(const Arg *arg) {
|
||||
focusclient(focustop(selmon), 1);
|
||||
arrange(selmon, false);
|
||||
}
|
||||
printstatus(PRINT_ALL);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1278,7 +1278,7 @@ int toggleview(const Arg *arg) {
|
||||
focusclient(focustop(selmon), 1);
|
||||
arrange(selmon, false);
|
||||
}
|
||||
printstatus(PRINT_ALL);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1396,7 +1396,7 @@ int comboview(const Arg *arg) {
|
||||
view(&(Arg){.ui = newtags}, false);
|
||||
}
|
||||
|
||||
printstatus(PRINT_ALL);
|
||||
printstatus();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user