no need to restore focus
This commit is contained in:
parent
df121e7c03
commit
4a610dfeb3
4
client.c
4
client.c
|
@ -772,8 +772,6 @@ uicb_client_swapnext(int screen, char *arg __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
client_swap(&globalconf.clients, sel, next);
|
client_swap(&globalconf.clients, sel, next);
|
||||||
arrange(screen);
|
arrange(screen);
|
||||||
/* restore focus */
|
|
||||||
focus(sel, True, screen);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -795,8 +793,6 @@ uicb_client_swapprev(int screen, char *arg __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
client_swap(&globalconf.clients, prev, sel);
|
client_swap(&globalconf.clients, prev, sel);
|
||||||
arrange(screen);
|
arrange(screen);
|
||||||
/* restore focus */
|
|
||||||
focus(sel, True, screen);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue