From 8da9a01db55b4f1d0c3941c199318d4d9f6cf1c4 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Fri, 2 Nov 2012 15:01:12 +0000 Subject: [PATCH] Launch mintinstall as root --- debian/changelog | 6 ++++++ usr/lib/linuxmint/mintMenu/plugins/system_management.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index d0d3135..acdf093 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mintmenu (5.3.8) nadia; urgency=low + + * Launch mintinstall as root + + -- Clement Lefebvre Fri, 02 Nov 2012 15:00:53 +0000 + mintmenu (5.3.7) maya; urgency=low * Added missing dependencies diff --git a/usr/lib/linuxmint/mintMenu/plugins/system_management.py b/usr/lib/linuxmint/mintMenu/plugins/system_management.py index 4a3e145..c0e78d5 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/lib/linuxmint/mintMenu/plugins/system_management.py @@ -131,7 +131,7 @@ class pluginclass( object ): if ( self.showSoftwareManager == True ): if os.path.exists("/usr/lib/linuxmint/mintInstall/icon.svg"): Button1 = easyButton( "/usr/lib/linuxmint/mintInstall/icon.svg", self.iconsize, [_("Software Manager")], -1, -1 ) - Button1.connect( "clicked", self.ButtonClicked, "mintinstall" ) + Button1.connect( "clicked", self.ButtonClicked, "gksu mintinstall" ) Button1.show() self.systemBtnHolder.pack_start( Button1, False, False ) self.mintMenuWin.setTooltip( Button1, _("Browse and install available software") )