diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-14 08:21:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-14 08:21:33 +0000 |
| commit | 5c0f10b6b6602c18b211b6ebca6ec93557c8cea7 (patch) | |
| tree | 045ccc2cecea6de48307cd17f93d16c710b33d0d | |
| parent | 70003cece6e243f039cbaea086ecfb208069af94 (diff) | |
skip windows in the alt-tabbing which have the SKIP_TASKBAR hint set on them
| -rw-r--r-- | openbox/focus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openbox/focus.c b/openbox/focus.c index 3bb0ae8e..c30d0e61 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -309,6 +309,7 @@ ObClient *focus_cycle(gboolean forward, gboolean linear, gboolean done, desktop */ if (ft->transients == NULL && client_normal(ft) && ((ft->can_focus || ft->focus_notify) && + !ft->skip_taskbar && (ft->desktop == screen_desktop || ft->desktop == DESKTOP_ALL))) { if (ft != focus_cycle_target) { /* prevents flicker */ if (focus_cycle_target) |
