talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 9cf5b73b4726a9e13deee191c1bd6dc75486a169
parent c45ba3666d197be9fe93a8858623b6fcabea88cf
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Wed, 22 Apr 2015 18:31:46 +0200

Compose window: Fix bug #3421 - Recipients list doesn't scroll when moving with arrow keys.

Diffstat:
Msrc/compose.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/compose.c b/src/compose.c @@ -7086,6 +7086,8 @@ static GtkWidget *compose_create_header(Compose *compose) gtk_widget_show(header_table); gtk_container_set_border_width(GTK_CONTAINER(header_table), 0); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(header_scrolledwin), header_table); + gtk_container_set_focus_vadjustment(GTK_CONTAINER(header_table), + gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(header_scrolledwin))); gtk_viewport_set_shadow_type(GTK_VIEWPORT(gtk_bin_get_child(GTK_BIN(header_scrolledwin))), GTK_SHADOW_NONE); gtk_table_attach(GTK_TABLE(header_table_main), header_scrolledwin,