Make sure window->border_only is initialized so we don't get random

2005-02-04  Elijah Newren  <newren@gmail.com>

	Make sure window->border_only is initialized so we don't get
	random windows without decorations.  Thanks to Sinisa Segvic and
	Owen Taylor for providing test cases.  Fixes #145131.

	* src/window.c: (update_mwm_hints): Be sure to call
	recalc_window_features even if no MWM hints are set
This commit is contained in:
Elijah Newren 2005-02-05 03:02:42 +00:00 committed by Elijah Newren
parent 58b323e4cc
commit 84312194e8
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2005-02-04 Elijah Newren <newren@gmail.com>
Make sure window->border_only is initialized so we don't get
random windows without decorations. Thanks to Sinisa Segvic and
Owen Taylor for providing test cases. Fixes #145131.
* src/window.c: (update_mwm_hints): Be sure to call
recalc_window_features even if no MWM hints are set
2005-02-02 Elijah Newren <newren@gmail.com> 2005-02-02 Elijah Newren <newren@gmail.com>
Focus parents of dismissed transient windows in preference to the Focus parents of dismissed transient windows in preference to the

View File

@ -4655,6 +4655,7 @@ update_mwm_hints (MetaWindow *window)
&hints)) &hints))
{ {
meta_verbose ("Window %s has no MWM hints\n", window->desc); meta_verbose ("Window %s has no MWM hints\n", window->desc);
recalc_window_features (window);
return; return;
} }