diff --git a/debian/changelog b/debian/changelog index a750664..a2ccc34 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mintmenu (5.2.8) lisa; urgency=low + + * Fixed "Add to panel" in applications plugin + + -- Clement Lefebvre Thu, 01 Dec 2011 20:05:40 +0000 + mintmenu (5.2.7) lisa; urgency=low * Replaced system and places shortcut in MATE to use caja and mate-terminal diff --git a/usr/lib/linuxmint/mintMenu/plugins/applications.py b/usr/lib/linuxmint/mintMenu/plugins/applications.py index 1af681e..8088b36 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/applications.py +++ b/usr/lib/linuxmint/mintMenu/plugins/applications.py @@ -333,7 +333,7 @@ class pluginclass( object ): self.panel_position = 0 appletidlist = mateconf.client_get_default().get_list("/apps/panel/general/applet_id_list", "string") for applet in appletidlist: - bonobo_id = mateconf.client_get_default().get_string("/apps/panel/applets/" + applet + "/bonobo_iid") + bonobo_id = mateconf.client_get_default().get_string("/apps/panel/applets/" + applet + "/applet_iid") if bonobo_id == "OAFIID:MATE_mintMenu": self.panel = mateconf.client_get_default().get_string("/apps/panel/applets/" + applet + "/toplevel_id") self.panel_position = mateconf.client_get_default().get_int("/apps/panel/applets/" + applet + "/position") + 1