From 2494699d4663da9c4bafcdf0513f2681a8ad8d49 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Tue, 10 Apr 2012 20:02:29 +0100 Subject: [PATCH] Try x-terminal-emulator first for Reported by Dave Abrahams. --- zeroinstall/gtkui/applistbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeroinstall/gtkui/applistbox.py b/zeroinstall/gtkui/applistbox.py index 95f206a..0c96598 100644 --- a/zeroinstall/gtkui/applistbox.py +++ b/zeroinstall/gtkui/applistbox.py @@ -158,7 +158,7 @@ class AppListBox: iface = self.iface_cache.get_interface(uri) reader.update_from_cache(iface) if len(iface.get_metadata(namespaces.XMLNS_IFACE, 'needs-terminal')): - for terminal in ['xterm', 'gnome-terminal', 'rxvt', 'konsole']: + for terminal in ['x-terminal-emulator', 'xterm', 'gnome-terminal', 'rxvt', 'konsole']: exe = support.find_in_path(terminal) if exe: if terminal == 'gnome-terminal': -- 2.11.4.GIT