From a7f9c3815479c1a31773e4b030fafbfc0c67e84a Mon Sep 17 00:00:00 2001 From: Alfons Hoogervorst Date: Fri, 23 Aug 2002 13:42:18 +0000 Subject: [PATCH] move cursor to "To" entry when forwarding as attachment (reported and solved by Steve Lamb, closes bug report "[ 592880 ] Forward as attachment; cursor not in to") --- ChangeLog.claws | 9 ++++++++- configure.in | 2 +- src/compose.c | 2 ++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index b6eb40575..bc6d5887d 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,6 +1,13 @@ +2002-08-24 [alfons] 0.8.1claws110 + + * src/compose.c + move cursor to "To" entry when forwarding as attachment + (reported and solved by Steve Lamb, closes bug report + "[ 592880 ] Forward as attachment; cursor not in to") + 2002-08-24 [colin] 0.8.1claws109 - *src/mainwindow.c + * src/mainwindow.c fix quick search visibility after GUI (de)separations. 2002-08-23 [colin] 0.8.1claws108 diff --git a/configure.in b/configure.in index 4df61024c..f423faae3 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws109 +EXTRA_VERSION=claws110 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/compose.c b/src/compose.c index 61a3a6fe0..0011a93fc 100644 --- a/src/compose.c +++ b/src/compose.c @@ -1166,6 +1166,8 @@ Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list) gtk_stext_set_point(GTK_STEXT(compose->text), 0); gtk_stext_thaw(text); + gtk_widget_grab_focus(compose->header_last->entry); + #if 0 /* NEW COMPOSE GUI */ if (account->protocol != A_NNTP) gtk_widget_grab_focus(compose->to_entry); -- 2.25.1