[Commits] [SCM] claws branch, master, updated. 3.14.1-16-g81d0b58
claws at claws-mail.org
claws at claws-mail.org
Thu Nov 17 10:46:38 CET 2016
The branch, master has been updated
via 81d0b58adc8a3e5960a88f566227b5f2e922ae9e (commit)
from caa00289e8f00d5e7396fa386a31d2f64882cf17 (commit)
Summary of changes:
src/textview.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 81d0b58adc8a3e5960a88f566227b5f2e922ae9e
Author: Paul <paul at claws-mail.org>
Date: Thu Nov 17 09:46:31 2016 +0000
fix text selection when double-clicking quoted text and 'collapse quoted text on double click' is turned off
Patch by Andrej
diff --git a/src/textview.c b/src/textview.c
index c35dbf9..fa2860d 100644
--- a/src/textview.c
+++ b/src/textview.c
@@ -2774,9 +2774,11 @@ static gboolean textview_uri_button_pressed(GtkTextTag *tag, GObject *obj,
}
return TRUE;
} else if (qlink && bevent->button == 1) {
- if (prefs_common.hide_quoted)
+ if (prefs_common.hide_quoted) {
textview_toggle_quote(textview, NULL, uri, FALSE);
- return TRUE;
+ return TRUE;
+ } else
+ return FALSE;
} else if (!g_ascii_strncasecmp(uri->uri, "mailto:", 7)) {
if (bevent->button == 3) {
g_object_set_data(
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list