diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-user-creatable-items-handler.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index cd6bc43ea5..2e50b3f708 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2006-06-21 Srinivasa Ragavan <sragavan@novell.com> + + * e-user-creatable-items-handler.c: (setup_toolbar_button): Fixed a + minor packing issue in New button. + 2006-06-17 Tor Lillqvist <tml@novell.com> * e-shell.c (impl_finalize): Don't call diff --git a/shell/e-user-creatable-items-handler.c b/shell/e-user-creatable-items-handler.c index 80aef0fb44..0382ce9330 100644 --- a/shell/e-user-creatable-items-handler.c +++ b/shell/e-user-creatable-items-handler.c @@ -754,7 +754,7 @@ setup_toolbar_button (EUserCreatableItemsHandler *handler) priv->default_menu_item->icon); } else if(!g_ascii_strcasecmp (val,"icons")){ - e_combo_button_pack_vbox (E_COMBO_BUTTON (priv->new_button)); + e_combo_button_pack_hbox (E_COMBO_BUTTON (priv->new_button)); e_combo_button_set_icon (E_COMBO_BUTTON (priv->new_button), priv->default_menu_item->icon); e_combo_button_set_label (E_COMBO_BUTTON (priv->new_button), NULL); |