From 0b3cbb9f1bc12c80c92afbe1a6345f807e572e78 Mon Sep 17 00:00:00 2001 From: James McMahon Date: Fri, 25 Feb 2011 19:45:50 +0000 Subject: [PATCH] Update to use Terminal as defined in GConf --- usr/lib/linuxmint/mintMenu/plugins/system_management.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/system_management.py b/usr/lib/linuxmint/mintMenu/plugins/system_management.py index 706b730..7474bbb 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/lib/linuxmint/mintMenu/plugins/system_management.py @@ -157,7 +157,8 @@ class pluginclass( object ): if ( self.showTerminal == True ): Button4 = easyButton( self.term, self.iconsize, [_("Terminal")], -1, -1 ) - Button4.connect( "clicked", self.ButtonClicked, "x-terminal-emulator" ) + Button4.connect( "clicked", self.ButtonClicked, +self.term ) Button4.show() self.systemBtnHolder.pack_start( Button4, False, False ) self.mintMenuWin.setTooltip( Button4, _("Use the command line") )