From 3715090486c5ecba14c56ffa63f3040465e956b5 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Mon, 30 May 2011 16:01:11 +0100 Subject: [PATCH] Compatible with latest mint-x-theme --- debian/changelog | 6 ++++++ usr/lib/linuxmint/mintMenu/plugins/applications.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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"