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