mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
never use a window with input = FALSE take_focus = FALSE in the normal and
* src/window.h (META_WINDOW_IN_NORMAL_TAB_CHAIN, META_WINDOW_IN_DOCK_TAB_CHAIN) : never use a window with input = FALSE take_focus = FALSE in the normal and doc tab chains #90409
This commit is contained in:
@ -407,11 +407,12 @@ void meta_window_get_work_area (MetaWindow *window,
|
||||
gboolean meta_window_same_application (MetaWindow *window,
|
||||
MetaWindow *other_window);
|
||||
|
||||
#define META_WINDOW_IN_NORMAL_TAB_CHAIN(w) \
|
||||
#define META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE(w) \
|
||||
((w)->type != META_WINDOW_DOCK && (w)->type != META_WINDOW_DESKTOP)
|
||||
|
||||
#define META_WINDOW_IN_NORMAL_TAB_CHAIN(w) \
|
||||
(((w)->input || (w)->take_focus) && META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE (w))
|
||||
#define META_WINDOW_IN_DOCK_TAB_CHAIN(w) \
|
||||
(! META_WINDOW_IN_NORMAL_TAB_CHAIN (w))
|
||||
(((w)->input || (w)->take_focus) && ! META_WINDOW_IN_NORMAL_TAB_CHAIN_TYPE (w))
|
||||
|
||||
void meta_window_refresh_resize_popup (MetaWindow *window);
|
||||
|
||||
|
Reference in New Issue
Block a user