From: Paul Date: Fri, 29 Jan 2016 13:33:25 +0000 (+0000) Subject: automatically use external editor on fwd-as-attachment if option is set X-Git-Tag: 3.14.0~196 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=9a84275f946988324192c427a3c71a2fcd257d3f automatically use external editor on fwd-as-attachment if option is set --- diff --git a/src/compose.c b/src/compose.c index cb506352c..f7d18a04f 100644 --- a/src/compose.c +++ b/src/compose.c @@ -2069,6 +2069,9 @@ static Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_ gtk_text_buffer_get_start_iter(textbuf, &iter); gtk_text_buffer_place_cursor(textbuf, &iter); + if (prefs_common.auto_exteditor) + compose_exec_ext_editor(compose); + gtk_widget_grab_focus(compose->header_last->entry); undo_unblock(compose->undostruct); compose->modified = FALSE;