diff options
| author | Dana Jansens <danakj@orodu.net> | 2011-01-28 13:25:32 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2011-08-01 11:50:16 -0400 |
| commit | 5b2ed63cb4d97c3a0492de272517a1c054949a8d (patch) | |
| tree | 794555359914bafcbe496fe97b23cf801dc614f9 /openbox | |
| parent | 2288da0ae3b44c987687e3deeb7864fcb7b23bb9 (diff) | |
Fix bug #4877 (Some harmless code quirks involving booleans)
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/focus_cycle.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/focus_cycle.c b/openbox/focus_cycle.c index 39d704cc..6d4cc2a5 100644 --- a/openbox/focus_cycle.c +++ b/openbox/focus_cycle.c @@ -93,7 +93,8 @@ void focus_cycle_reorder() focus_cycle_update_indicator(focus_cycle_target); if (!focus_cycle_target) focus_cycle(TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, - TRUE, TRUE, TRUE, TRUE, TRUE); + TRUE, TRUE, OB_FOCUS_CYCLE_POPUP_MODE_NONE, + TRUE, TRUE); } } |
