From 555d5b30c53be7bbf02470e494126388373af4a0 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Tue, 23 Feb 2010 10:45:34 +0000 Subject: [PATCH] Fixed orientation of the menu label (emorrp1's fix was good but incomplete) --- usr/lib/linuxmint/mintMenu/mintMenu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/linuxmint/mintMenu/mintMenu.py b/usr/lib/linuxmint/mintMenu/mintMenu.py index 354bd06..0d5a4a5 100755 --- a/usr/lib/linuxmint/mintMenu/mintMenu.py +++ b/usr/lib/linuxmint/mintMenu/mintMenu.py @@ -633,13 +633,13 @@ class MenuWin( object ): # if we have a vertical panel elif self.applet.get_orient() == gnomeapplet.ORIENT_LEFT: self.button_box = gtk.VBox() - self.systemlabel.set_angle( 90 ) + self.systemlabel.set_angle( 270 ) self.button_box.pack_start( self.systemlabel ) self.button_box.pack_start( self.button_icon ) self.button_icon.set_padding( 5, 0 ) elif self.applet.get_orient() == gnomeapplet.ORIENT_RIGHT: self.button_box = gtk.VBox() - self.systemlabel.set_angle( 270 ) + self.systemlabel.set_angle( 90 ) self.button_box.pack_start( self.button_icon ) self.button_box.pack_start( self.systemlabel ) self.button_icon.set_padding( 0, 5 )