From fce40453c9aece0fcdd523fe80ff1cc573747844 Mon Sep 17 00:00:00 2001 From: Suman Manjunath Date: Mon, 18 Aug 2008 04:22:06 +0000 Subject: Patch from Baptiste Mille-Mathias : Fixes bug #546867 (Set the 'Send' button as important to have a label). svn path=/trunk/; revision=36008 --- composer/ChangeLog | 7 +++++++ composer/e-composer-private.c | 7 +++++++ 2 files changed, 14 insertions(+) (limited to 'composer') diff --git a/composer/ChangeLog b/composer/ChangeLog index 56e33a762b..32c38183f4 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,10 @@ +2008-08-18 Baptiste Mille-Mathias + + ** Fixes bug #546867 + + * e-composer-private.c (e_composer_private_init): Set the 'Send' button + as important to have a label. + 2008-08-01 Matthew Barnes ** Fixes bug #428384 diff --git a/composer/e-composer-private.c b/composer/e-composer-private.c index 4935dac5d4..30cdbfab75 100644 --- a/composer/e-composer-private.c +++ b/composer/e-composer-private.c @@ -87,6 +87,8 @@ e_composer_private_init (EMsgComposer *composer) GtkWidget *widget; GtkWidget *expander; GtkWidget *container; + GtkWidget *send_widget; + const gchar *path; gchar *filename; GError *error = NULL; @@ -120,6 +122,11 @@ e_composer_private_init (EMsgComposer *composer) gtk_ui_manager_add_ui_from_file (manager, filename, &error); g_free (filename); + /* We set the send button as important to have a label */ + path = "/main-toolbar/pre-main-toolbar/send"; + send_widget = gtk_ui_manager_get_widget (manager, path); + gtk_tool_item_set_is_important (GTK_TOOL_ITEM (send_widget), TRUE); + composer_setup_charset_menu (composer); if (error != NULL) { -- cgit