[metacity] Add XFCE Terminal as a terminal



commit 3f642ea34fb960db110b2a1dc62df49459f3fc15
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Wed Oct 21 21:11:46 2009 -0400

    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 6de86ee..f679dbe 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -1947,6 +1947,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;
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]