mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
Make skip-taskbar windows appear in the Ctrl-Alt-Tab list. Closes #106249.
2008-02-18 Matthias Clasen <mclasen@redhat.com> * src/core/window.h: Make skip-taskbar windows appear in the Ctrl-Alt-Tab list. Closes #106249. svn path=/trunk/; revision=3580
This commit is contained in:

committed by
Matthias Clasen

parent
8c487ddbb2
commit
3782c482ef
@ -558,7 +558,7 @@ gboolean meta_window_same_application (MetaWindow *window,
|
||||
#define META_WINDOW_IN_NORMAL_TAB_CHAIN(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) \
|
||||
(((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_GROUP_TAB_CHAIN(w, g) \
|
||||
(((w)->input || (w)->take_focus) && (!g || meta_window_get_group(w)==g))
|
||||
|
||||
|
Reference in New Issue
Block a user