talons

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

commit eba3ff6f6f06cf91fe0016a706073696d3839531
parent 6b252626a3bdeafedcfd7a364db1c9e1e224b49c
Author: Colin Leroy <colin@colino.net>
Date:   Thu, 22 May 2014 15:40:24 +0200

Fix bug #2179, "Improve quotation wrapping support": Make manual wrapping also wrap quotes.

Diffstat:
Msrc/compose.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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