mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-11-07 13:29:59 -05:00
opt: optimize code struct
This commit is contained in:
parent
a220a3060f
commit
32476f366b
3 changed files with 5 additions and 4 deletions
|
|
@ -78,7 +78,7 @@ void exchange_stack_client(const Arg *arg) {
|
|||
Client *tc;
|
||||
if (!c || c->isfloating || c->isfullscreen || c->ismaxmizescreen)
|
||||
return;
|
||||
if (arg->i > 0) {
|
||||
if (arg->i == NEXT) {
|
||||
tc = get_next_stack_client(c, false);
|
||||
} else {
|
||||
tc = get_next_stack_client(c, true);
|
||||
|
|
@ -194,7 +194,7 @@ focusstack(const Arg *arg) {
|
|||
|
||||
if (!sel || sel->isfullscreen)
|
||||
return;
|
||||
if (arg->i > 0) {
|
||||
if (arg->i == NEXT) {
|
||||
tc = get_next_stack_client(sel, false);
|
||||
} else {
|
||||
tc = get_next_stack_client(sel, true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue