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>
|
2005-02-20 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
Fix an obscure xinerama placement bug with windows that are too
|
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 &&
|
if ( !takes_focus_on_map &&
|
||||||
window->display->focus_window != NULL &&
|
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,
|
if (meta_window_is_ancestor_of_transient (window->display->focus_window,
|
||||||
window))
|
window))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user