diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-22 13:03:42 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-22 13:03:42 +0800 |
commit | 4049dece23d922f3df1555eb57259a94af445dc1 (patch) | |
tree | 30f4f62e8e2eff1f47e70816a576c295b8e5f224 /shell | |
parent | fe6ce719e4fab275a7f8cefc26be63752d210986 (diff) | |
download | gsoc2013-evolution-4049dece23d922f3df1555eb57259a94af445dc1.tar.gz gsoc2013-evolution-4049dece23d922f3df1555eb57259a94af445dc1.tar.zst gsoc2013-evolution-4049dece23d922f3df1555eb57259a94af445dc1.zip |
** Fixes bug #346317
svn path=/trunk/; revision=32621
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-user-creatable-items-handler.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0b455905f6..f1d52385fd 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2006-07-31 Hiroyuki Ikezoe <poincare@ikezoe.net> + + ** Fixes bug #346317 + * e-user-creatable-items-handler.c: (set_combo_button_style): Truncate + spaces from the label of new mail button. + 2006-08-21 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #346797 Patch by Matthew Barnes diff --git a/shell/e-user-creatable-items-handler.c b/shell/e-user-creatable-items-handler.c index 486990481b..4a29bd35c3 100644 --- a/shell/e-user-creatable-items-handler.c +++ b/shell/e-user-creatable-items-handler.c @@ -690,7 +690,7 @@ set_combo_button_style (EComboButton *button, const gchar *style, GdkPixbuf *ico } else { /* Default to both */ e_combo_button_pack_vbox (button); e_combo_button_set_icon (button, icon); - e_combo_button_set_label (button, _(" New ")); + e_combo_button_set_label (button, _("New")); } } |