talons

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

commit 9a84275f946988324192c427a3c71a2fcd257d3f
parent d0c724175711262214cd13a38e68fa8dd4630056
Author: Paul <paul@claws-mail.org>
Date:   Fri, 29 Jan 2016 13:33:25 +0000

automatically use external editor on fwd-as-attachment if option is set

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

diff --git 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;