From dc3a93be990d35a2d06c788bb8cbf94d5a70326b Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" 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 file changed, 3 insertions(+) diff --git a/src/core/window.c b/src/core/window.c index b3f2004b8..c6abf8111 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -2188,6 +2188,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; }