File panel-vertical-resize-considerably-fix.diff of Package gnome-panel-nld
--- gnome-panel/panel-toplevel.c
+++ gnome-panel/panel-toplevel.c
@@ -2747,10 +2747,14 @@
/*If panel has stretched due to menubar on vertical panels, insert the values in gconf*/
toplevel = PANEL_TOPLEVEL (container);
- if (toplevel->priv->orientation & PANEL_VERTICAL_MASK){
+ if (toplevel->priv->orientation & PANEL_VERTICAL_MASK)
+ {
width = toplevel->priv->original_width;
- if (width >120 ) width = 120;
- panel_profile_set_toplevel_size (toplevel, width);
+ if (width >120 )
+ {
+ width = 120;
+ panel_profile_set_toplevel_size (toplevel, width);
+ }
}
}