1
0
Fork 0

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
This commit is contained in:
Owen W. Taylor 2009-10-21 21:11:46 -04:00
parent 49aabfec02
commit dc3a93be99

View file

@ -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;
}