mirror of
git://git.suckless.org/dwm
synced 2025-08-13 03:05:58 -07:00
removed the if(clients) check from popping code
This commit is contained in:
3
client.c
3
client.c
@@ -477,8 +477,7 @@ zoom(Arg *arg)
|
||||
if(sel->next)
|
||||
sel->next->prev = sel->prev;
|
||||
sel->prev = NULL;
|
||||
if(clients)
|
||||
clients->prev = sel;
|
||||
clients->prev = sel;
|
||||
sel->next = clients;
|
||||
clients = sel;
|
||||
arrange(NULL);
|
||||
|
Reference in New Issue
Block a user