From 022aed6b838d063cab256a62507905533fd7c27b Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Fri, 10 Sep 2010 10:42:02 +0100 Subject: [PATCH] Fixed separators colors in search results --- debian/changelog | 6 ++++++ usr/lib/linuxmint/mintMenu/plugins/applications.py | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6ee7950..b407fc3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mintmenu (5.0.3) julia; urgency=low + + * Fixed separators colors in search results + + -- Clement Lefebvre Fri, 10 Sep 2010 10:41:00 +0000 + mintmenu (5.0.2) julia; urgency=low * Fixed space chars in computer search diff --git a/usr/lib/linuxmint/mintMenu/plugins/applications.py b/usr/lib/linuxmint/mintMenu/plugins/applications.py index 05bc226..14c5cc9 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/applications.py +++ b/usr/lib/linuxmint/mintMenu/plugins/applications.py @@ -618,9 +618,10 @@ class pluginclass( object ): separator.add(gtk.HSeparator()) separator.set_size_request(-1, 20) separator.type = "separator" + self.mintMenuWin.SetPaneColors( [ separator ] ) separator.show_all() self.applicationsBox.add(separator) - self.suggestions.append(separator) + self.suggestions.append(separator) suggestionButton = SuggestionButton(gtk.STOCK_ADD, self.iconSize, "") suggestionButton.connect("clicked", self.search_dictionary) @@ -638,7 +639,8 @@ class pluginclass( object ): self.last_separator = gtk.EventBox() self.last_separator.add(gtk.HSeparator()) self.last_separator.set_size_request(-1, 20) - self.last_separator.type = "separator" + self.last_separator.type = "separator" + self.mintMenuWin.SetPaneColors( [ self.last_separator ] ) self.last_separator.show_all() self.applicationsBox.add(self.last_separator) self.suggestions.append(self.last_separator)