summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2005-02-05 03:04:13 +0000
committerElijah Newren <newren@src.gnome.org>2005-02-05 03:04:13 +0000
commit4496d4d815027d82580cb6579caf8c899da7a072 (patch)
tree10aa3f391b82c434b075fe5162e9908ee29baa73
parented4e7fd78335a373f0622fae8ff44fa975c8c271 (diff)
downloadmetacity-4496d4d815027d82580cb6579caf8c899da7a072.tar.gz
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
-rw-r--r--ChangeLog9
-rw-r--r--src/window.c1
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 87e3b634..4595d35f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
+
2004-12-06 Elijah Newren <newren@gmail.com>
* configure.in: post-release bump version to 2.8.13
diff --git a/src/window.c b/src/window.c
index e40d8091..350c70ef 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4684,6 +4684,7 @@ update_mwm_hints (MetaWindow *window)
&hints))
{
meta_verbose ("Window %s has no MWM hints\n", window->desc);
+ recalc_window_features (window);
return;
}