diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-09 17:40:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-09 17:40:14 +0000 |
| commit | a6130b8407506d546c8343aae209755d926e4eb3 (patch) | |
| tree | fdf9f76797e59aa105cf94d49010218a6eff1fa0 /openbox | |
| parent | 9bae1e3128d75ff0768bfb78a1437dec6e6f1173 (diff) | |
dont show the focus popup when theres no target client
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/action.c b/openbox/action.c index 50b1e545..a9c7737a 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -750,6 +750,6 @@ void action_cycle_windows(union ActionData *data) c = focus_cycle(data->cycle.forward, data->cycle.linear, data->cycle.final, data->cycle.cancel); - popup_cycle(c, !c && (data->cycle.final||data->cycle.cancel)); + popup_cycle(c, !c || data->cycle.final || data->cycle.cancel); } |
