mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
Ignore all focus and focus-stealing-prevention code in meta_window_show
2005-02-20 Elijah Newren <newren@gmail.com> * src/window.c (meta_window_show): Ignore all focus and focus-stealing-prevention code in meta_window_show when not showing the window for the first time. Fixes #167199.
This commit is contained in:
parent
b93960ac9d
commit
79f2b91679
@ -1,3 +1,9 @@
|
||||
2005-02-20 Elijah Newren <newren@gmail.com>
|
||||
|
||||
* src/window.c (meta_window_show): Ignore all focus and
|
||||
focus-stealing-prevention code in meta_window_show when not
|
||||
showing the window for the first time. Fixes #167199.
|
||||
|
||||
2005-02-20 Elijah Newren <newren@gmail.com>
|
||||
|
||||
Fix an obscure xinerama placement bug with windows that are too
|
||||
|
@ -1696,7 +1696,8 @@ meta_window_show (MetaWindow *window)
|
||||
|
||||
if ( !takes_focus_on_map &&
|
||||
window->display->focus_window != NULL &&
|
||||
!place_on_top_on_map )
|
||||
!place_on_top_on_map &&
|
||||
window->showing_for_first_time )
|
||||
{
|
||||
if (meta_window_is_ancestor_of_transient (window->display->focus_window,
|
||||
window))
|
||||
|
Loading…
Reference in New Issue
Block a user