summaryrefslogtreecommitdiffstats
path: root/Allow-applications-to-raise-windows-when-raise_on_cl.patch
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@fedoraproject.org>2009-12-10 23:33:00 +0000
committerOwen Taylor <otaylor@fedoraproject.org>2009-12-10 23:33:00 +0000
commit97b03230fda37fecb08ffb38d83e33d4c86aa7be (patch)
treef7068621f9cd94d5ccbf2672a0ec44133e8b85e7 /Allow-applications-to-raise-windows-when-raise_on_cl.patch
parent2486a74f9da9245d4fe5cdf4a7cc880c49798fd5 (diff)
downloadmetacity-42012a6dac833749aa57d072e2b2297409480329.tar.gz
metacity-42012a6dac833749aa57d072e2b2297409480329.tar.xz
metacity-42012a6dac833749aa57d072e2b2297409480329.zip
- Require gnome-themes rather than nodoka-metacity-theme (rhbz 532455,metacity-2_28_0-13_fc13
Stijn Hoop) - Add patches for GNOME bugs 445447 - Application-induced window raise fails when raise_on_click off (rhbz 526045) 530702 - compiz doesn't start if metacity compositor is enabled (rhbz 537791) 559816 - Doesn't update keybindings being disabled/cleared (rhbz 532282) 567528 - Cannot raise windows from applications in Tcl/Tk and Java (rhbz 503522) 577576 - Failed to read saved session file warning on new sessions (rhbz 493245) 598231 - When Chromium rings the bell, metacity quits(rhbz 532282) 598995 - Don't focus ancestor window on a different workspace (rhbz 237158) 599097 - For mouse and sloppy focus, return to "mouse mode" on motion (rhbz 530261) 599248 - Add no_focus_windows preference to list windows that shouldn't be focused (rhbz 530262) 599261 - Add a new_windows_always_on_top preference (rhbz 530263) 599262 - Add XFCE Terminal as a terminal 604319 - XIOError unknown display (rhbz 537845)
Diffstat (limited to 'Allow-applications-to-raise-windows-when-raise_on_cl.patch')
-rw-r--r--Allow-applications-to-raise-windows-when-raise_on_cl.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/Allow-applications-to-raise-windows-when-raise_on_cl.patch b/Allow-applications-to-raise-windows-when-raise_on_cl.patch
new file mode 100644
index 0000000..20d8dfa
--- /dev/null
+++ b/Allow-applications-to-raise-windows-when-raise_on_cl.patch
@@ -0,0 +1,31 @@
+From 55d4c4cc9455f348b5bc455675004a0e035ea31d Mon Sep 17 00:00:00 2001
+From: Owen W. Taylor <otaylor@fishsoup.net>
+Date: Tue, 17 Nov 2009 17:24:53 -0500
+Subject: [PATCH] Allow applications to raise windows when raise_on_click is off
+
+Whether Metacity honors a raise request from an application should
+not be affected by the raise_on_click setting; remove a check that
+seems to have been added in error.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=445447
+---
+ src/core/window.c | 3 +--
+ 1 files changed, 1 insertions(+), 2 deletions(-)
+
+diff --git a/src/core/window.c b/src/core/window.c
+index b481ccf..db59de1 100644
+--- a/src/core/window.c
++++ b/src/core/window.c
+@@ -4716,8 +4716,7 @@ meta_window_configure_request (MetaWindow *window,
+ {
+ MetaWindow *active_window;
+ active_window = window->display->expected_focus_window;
+- if (meta_prefs_get_disable_workarounds () ||
+- !meta_prefs_get_raise_on_click ())
++ if (meta_prefs_get_disable_workarounds ())
+ {
+ meta_topic (META_DEBUG_STACK,
+ "%s sent an xconfigure stacking request; this is "
+--
+1.6.5.2
+