From 0aebbc46d237f36805e73a79ed5cf6a0087d4649 Mon Sep 17 00:00:00 2001 From: hordepfo Date: Wed, 22 Jan 2014 03:28:13 +0000 Subject: [PATCH] Removed invisible widgets from coloring --- usr/lib/linuxmint/mintMenu/plugins/applications.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/applications.py b/usr/lib/linuxmint/mintMenu/plugins/applications.py index c41ebcf..f01b987 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/applications.py +++ b/usr/lib/linuxmint/mintMenu/plugins/applications.py @@ -268,7 +268,7 @@ class pluginclass( object ): self.content_holder =self.builder.get_object( "Applications" ) # Items to get custom colors - self.itemstocolor = [self.builder.get_object( "viewport1" ),self.builder.get_object( "viewport2" ),self.builder.get_object( "viewport3" ),self.builder.get_object( "notebook2" ) ] + self.itemstocolor = [self.builder.get_object( "viewport1" ),self.builder.get_object( "viewport2" ),self.builder.get_object( "viewport3" ) ] # Unset all timers self.filterTimer = None @@ -640,7 +640,6 @@ class pluginclass( object ): separator.set_visible_window(False) separator.set_size_request(-1, 20) separator.type = "separator" - self.mintMenuWin.SetPaneColors( [ separator ] ) separator.show_all() self.applicationsBox.add(separator) self.suggestions.append(separator) @@ -718,8 +717,7 @@ class pluginclass( object ): last_separator.add(Gtk.HSeparator()) last_separator.set_visible_window(False) last_separator.set_size_request(-1, 20) - last_separator.type = "separator" - self.mintMenuWin.SetPaneColors( [ last_separator ] ) + last_separator.type = "separator" last_separator.show_all() self.applicationsBox.add(last_separator) self.suggestions.append(last_separator) @@ -774,8 +772,7 @@ class pluginclass( object ): last_separator.add(Gtk.HSeparator()) last_separator.set_visible_window(False) last_separator.set_size_request(-1, 20) - last_separator.type = "separator" - self.mintMenuWin.SetPaneColors( [ last_separator ] ) + last_separator.type = "separator" last_separator.show_all() self.applicationsBox.add(last_separator) self.suggestions.append(last_separator) @@ -1351,7 +1348,6 @@ class pluginclass( object ): space.connect( "button_release_event", self.favPopup ) space.type = "space" - self.mintMenuWin.SetPaneColors( [ space ] ) space.show() return space @@ -1361,7 +1357,6 @@ class pluginclass( object ): separator.set_size_request( -1, 20 ) separator.type = "separator" - self.mintMenuWin.SetPaneColors( [ separator ] ) separator.show_all() box = Gtk.EventBox() box.type = "separator"