From 0062ed634ecebf01c65696d5fb1b643df2bc7390 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Sun, 1 May 2011 17:43:50 +0100 Subject: [PATCH] Star icon for mintinstall --- usr/lib/linuxmint/mintMenu/plugins/system_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/system_management.py b/usr/lib/linuxmint/mintMenu/plugins/system_management.py index ca8072d..dcc4069 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/lib/linuxmint/mintMenu/plugins/system_management.py @@ -132,7 +132,7 @@ class pluginclass( object ): if ( self.showSoftwareManager == True ): if os.path.exists("/usr/lib/linuxmint/mintInstall/icon.svg"): - Button1 = easyButton( "applications-other", self.iconsize, [_("Software Manager")], -1, -1 ) + Button1 = easyButton( "/usr/lib/linuxmint/mintInstall/icon.svg", self.iconsize, [_("Software Manager")], -1, -1 ) Button1.connect( "clicked", self.ButtonClicked, "mintinstall" ) Button1.show() self.systemBtnHolder.pack_start( Button1, False, False )