[Commits] [SCM] claws branch, master, updated. 3.10.1-80-g7975def

ticho at claws-mail.org ticho at claws-mail.org
Wed Jun 18 21:05:08 CEST 2014


The branch master of project "claws" (Claws Mail) has been updated
       via  7975defae6a05b78d287553acd5d221d6663286b (commit)
      from  8cd37924361f25a51c2c8a44cbb0b2415e75abb8 (commit)

Summary of changes:
 src/compose.c |    5 +++++
 1 file changed, 5 insertions(+)


- Log -----------------------------------------------------------------
commit 7975defae6a05b78d287553acd5d221d6663286b
Author: Andrej Kacian <andrej at kacian.sk>
Date:   Wed Jun 18 21:03:54 2014 +0200

    In compose window, prevent account selection combobox to get focus when navigating widgets using arrow keys. Closes bug #3216.

diff --git a/src/compose.c b/src/compose.c
index 8c7952b..801697e 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -8101,6 +8101,11 @@ static GtkWidget *compose_account_option_menu_create(Compose *compose)
 
 	gtk_box_pack_start(GTK_BOX(hbox), optmenubox, FALSE, FALSE, 0);
 	gtk_box_pack_start(GTK_BOX(hbox), from_name, TRUE, TRUE, 0);
+
+	GList *l = NULL;
+	l = g_list_prepend(l, from_name);
+	gtk_container_set_focus_chain(GTK_CONTAINER(hbox), l);
+	g_list_free(l);
 	
 	CLAWS_SET_TIP(optmenubox,
 		_("Account to use for this email"));

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list