From: Colin Leroy Date: Thu, 22 May 2014 13:40:24 +0000 (+0200) Subject: Fix bug #2179, "Improve quotation wrapping support": Make manual wrapping also wrap... X-Git-Tag: 3.10.0~20 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=eba3ff6f6f06cf91fe0016a706073696d3839531 Fix bug #2179, "Improve quotation wrapping support": Make manual wrapping also wrap quotes. --- diff --git a/src/compose.c b/src/compose.c index 8195e9df1..55c34edfe 100644 --- a/src/compose.c +++ b/src/compose.c @@ -4297,7 +4297,7 @@ static gboolean compose_beautify_paragraph(Compose *compose, GtkTextIter *par_it GtkTextIter iter, break_pos, end_of_line; gchar *quote_str = NULL; gint quote_len; - gboolean wrap_quote = prefs_common.linewrap_quote; + gboolean wrap_quote = force || prefs_common.linewrap_quote; gboolean prev_autowrap = compose->autowrap; gint startq_offset = -1, noq_offset = -1; gint uri_start = -1, uri_stop = -1;