dont show the focus popup when theres no target client
This commit is contained in:
parent
9bae1e3128
commit
a6130b8407
1 changed files with 1 additions and 1 deletions
|
@ -750,6 +750,6 @@ void action_cycle_windows(union ActionData *data)
|
||||||
|
|
||||||
c = focus_cycle(data->cycle.forward, data->cycle.linear, data->cycle.final,
|
c = focus_cycle(data->cycle.forward, data->cycle.linear, data->cycle.final,
|
||||||
data->cycle.cancel);
|
data->cycle.cancel);
|
||||||
popup_cycle(c, !c && (data->cycle.final||data->cycle.cancel));
|
popup_cycle(c, !c || data->cycle.final || data->cycle.cancel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue