mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
only cycle through visible *and* non-ignored windows.
ok oga@
This commit is contained in:
parent
993fd4311f
commit
734f45ab4b
4
client.c
4
client.c
@ -605,8 +605,8 @@ client_cycle(int reverse)
|
||||
newcc = (reverse ? client_mruprev(newcc) :
|
||||
client_mrunext(newcc));
|
||||
|
||||
/* Only cycle visible windows. */
|
||||
if (newcc->flags & CLIENT_HIDDEN)
|
||||
/* Only cycle visible and non-ignored windows. */
|
||||
if (newcc->flags & (CLIENT_HIDDEN|CLIENT_IGNORE))
|
||||
again = 1;
|
||||
|
||||
/* Is oldcc the only non-hidden window? */
|
||||
|
Loading…
Reference in New Issue
Block a user