Fix typo
This commit is contained in:
parent
d6a5595c64
commit
4c9c324780
@ -41,7 +41,6 @@ client_pertag(int tag)
|
||||
for(c = clients; c; c = c->next)
|
||||
if(c->tag == tag)
|
||||
++i;
|
||||
efree(c);
|
||||
|
||||
return i;
|
||||
}
|
||||
@ -152,8 +151,6 @@ client_focus(Client *c)
|
||||
if(!ishide(cc))
|
||||
titlebar_update(cc);
|
||||
|
||||
efree(cc);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@ -280,7 +280,8 @@ uicb_tile_switch(uicb_t cmd)
|
||||
return;
|
||||
if((c = sel) == nexttiled(clients))
|
||||
if(!(c = nexttiled(c->next)))
|
||||
return; client_detach(c);
|
||||
return;
|
||||
client_detach(c);
|
||||
client_attach(c);
|
||||
client_focus(c);
|
||||
arrange();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user