diff --git a/debian/changelog b/debian/changelog index e5a548e..a720b2e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mintmenu (5.2.2) katya; urgency=low + + * Compatibility with new Mint-X-Theme (dropped embedded gtk.Separator in Event boxes in favorites plugin) + + -- Clement Lefebvre Mon, 30 May 2011 16:00:00 +0000 + mintmenu (5.2.1) katya; urgency=low * Bug fix, preferences now work as expected again. diff --git a/usr/lib/linuxmint/mintMenu/plugins/applications.py b/usr/lib/linuxmint/mintMenu/plugins/applications.py index 85afa89..3668634 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/applications.py +++ b/usr/lib/linuxmint/mintMenu/plugins/applications.py @@ -1311,8 +1311,8 @@ class pluginclass( object ): return space def favoritesBuildSeparator( self ): - separator = gtk.EventBox() - separator.add( gtk.HSeparator() ) + separator = gtk.HSeparator() + #separator.add( gtk.HSeparator() ) separator.set_size_request( -1, 20 ) separator.connect( "button_release_event", self.favPopup ) separator.type = "separator"