[mutter] Add XFCE Terminal as a terminal



commit dc3a93be990d35a2d06c788bb8cbf94d5a70326b
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 b3f2004..c6abf81 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;
 }



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