diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-07-06 19:41:23 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-07-06 19:41:23 +0000 |
| commit | 0d0ce065df9ff1acc06fe63e4a0fe45c184de693 (patch) | |
| tree | 1d4837af35ef0263656360e6f91890b930b843d5 /openbox/focus_cycle_popup.c | |
| parent | b3d26fdb20e5a939210265ecdf8e5b51340991c6 (diff) | |
don't focus helper windows that map unless there are no other valid targets in the group (don't move focus from a group window to a new helper window).
this fixes gucharmap.
Diffstat (limited to 'openbox/focus_cycle_popup.c')
| -rw-r--r-- | openbox/focus_cycle_popup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 477619f5..e0a8080f 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -174,7 +174,7 @@ static void popup_setup(ObFocusCyclePopup *p, gboolean create_targets, for (it = g_list_last(focus_order); it; it = g_list_previous(it)) { ObClient *ft = it->data; - if (focus_valid_target(ft, + if (focus_valid_target(ft, TRUE, iconic_windows, all_desktops, dock_windows, |
