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)
28 lines
878 B
Diff
28 lines
878 B
Diff
From bf7327acb41a43b2bdeee9f0855455ebaef8b816 Mon Sep 17 00:00:00 2001
|
|
From: Owen W. Taylor <otaylor@fishsoup.net>
|
|
Date: Wed, 21 Oct 2009 21:11:46 -0400
|
|
Subject: [PATCH] Add XFCE Terminal as a terminal
|
|
|
|
Include the XFCE terminal program 'Terminal' in the list of terminals.
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=599262
|
|
---
|
|
src/core/window.c | 3 +++
|
|
1 files changed, 3 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/src/core/window.c b/src/core/window.c
|
|
index 0ae6a01..b481ccf 100644
|
|
--- a/src/core/window.c
|
|
+++ b/src/core/window.c
|
|
@@ -1951,6 +1951,9 @@ __window_is_terminal (MetaWindow *window)
|
|
/* mlterm ("multi lingual terminal emulator on X") */
|
|
else if (strcmp (window->res_class, "mlterm") == 0)
|
|
return TRUE;
|
|
+ /* Terminal -- XFCE Terminal */
|
|
+ else if (strcmp (window->res_class, "Terminal") == 0)
|
|
+ return TRUE;
|
|
|
|
return FALSE;
|
|
}
|
|
--
|
|
1.6.5.rc2
|