mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 09:30:45 -05:00
Thanks to mild7@users.sourceforge.net for this fix.
2004-12-24 Elijah Newren <newren@gmail.com> Thanks to mild7@users.sourceforge.net for this fix. * src/window.h: (META_WINDOW_IN_NORMAL_TAB_CHAIN): Excludes windows with skip_taskbar hint set from the alt-tab list; they'll appear in the ctrl-alt-tab list instead. (fixes #106249)
This commit is contained in:
parent
892cb8a8dd
commit
d5a484479f
@ -1,3 +1,11 @@
|
|||||||
|
2004-12-24 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
Thanks to mild7@users.sourceforge.net for this fix.
|
||||||
|
|
||||||
|
* src/window.h: (META_WINDOW_IN_NORMAL_TAB_CHAIN): Excludes
|
||||||
|
windows with skip_taskbar hint set from the alt-tab list; they'll
|
||||||
|
appear in the ctrl-alt-tab list instead. (fixes #106249)
|
||||||
|
|
||||||
2004-12-22 Elijah Newren <newren@gmail.com>
|
2004-12-22 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
Wrap XSetInputFocus, making display->expected_focus_window a
|
Wrap XSetInputFocus, making display->expected_focus_window a
|
||||||
|
@ -484,7 +484,7 @@ gboolean meta_window_same_application (MetaWindow *window,
|
|||||||
#define META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE(w) \
|
#define META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE(w) \
|
||||||
((w)->type != META_WINDOW_DOCK && (w)->type != META_WINDOW_DESKTOP)
|
((w)->type != META_WINDOW_DOCK && (w)->type != META_WINDOW_DESKTOP)
|
||||||
#define META_WINDOW_IN_NORMAL_TAB_CHAIN(w) \
|
#define META_WINDOW_IN_NORMAL_TAB_CHAIN(w) \
|
||||||
(((w)->input || (w)->take_focus) && META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE (w))
|
(((w)->input || (w)->take_focus ) && META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE (w) && (!(w)->skip_taskbar))
|
||||||
#define META_WINDOW_IN_DOCK_TAB_CHAIN(w) \
|
#define META_WINDOW_IN_DOCK_TAB_CHAIN(w) \
|
||||||
(((w)->input || (w)->take_focus) && ! META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE (w))
|
(((w)->input || (w)->take_focus) && ! META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE (w))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user