mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05: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:
parent
d275e4bbc2
commit
d78fab02eb
@ -1,3 +1,9 @@
|
||||
Thu Dec 5 18:41:02 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||
|
||||
* 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
|
||||
|
||||
Thu Dec 5 13:56:52 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
||||
|
||||
* src/display.c (event_callback): move a window to the current
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user