1
0
Fork 0

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:
Elijah Newren 2005-02-20 22:40:08 +00:00 committed by Elijah Newren
parent b93960ac9d
commit 79f2b91679
2 changed files with 8 additions and 1 deletions

View file

@ -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

View file

@ -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))