From 47f26e22f6deb9de43753957102ca66510f4307c Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Sun, 18 Jul 2004 08:16:28 +0000 Subject: [PATCH] fix bug introduced in 0.9.12cvs31.2 --- ChangeLog-gtk2.claws | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/textview.c | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index a86f1888f..2a653dae1 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,9 @@ +2004-07-18 [colin] 0.9.12cvs31.7 + + * src/textview.c + Fix bug introduced in 0.9.12cvs31.2 + (blocked in select mode after double click) + 2004-07-18 [colin] 0.9.12cvs31.6 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index b43ce3c45..e40466c92 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -43,3 +43,4 @@ ( cvs diff -u -r 1.65.2.6 -r 1.65.2.7 src/codeconv.c; ) > 0.9.12cvs31.4.patchset ( cvs diff -u -r 1.382.2.24 -r 1.382.2.25 src/compose.c; ) > 0.9.12cvs31.5.patchset ( cvs diff -u -r 1.382.2.25 -r 1.382.2.26 src/compose.c; cvs diff -u -r 1.5.2.7 -r 1.5.2.8 src/gtk/menu.c; ) > 0.9.12cvs31.6.patchset +( cvs diff -u -r 1.96.2.12 -r 1.96.2.13 src/textview.c; ) > 0.9.12cvs31.7.patchset diff --git a/configure.ac b/configure.ac index c5971b9b5..5f0cbafa1 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ INTERFACE_AGE=0 BINARY_AGE=0 EXTRA_VERSION=31 EXTRA_RELEASE= -EXTRA_GTK2_VERSION=.6 +EXTRA_GTK2_VERSION=.7 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION} diff --git a/src/textview.c b/src/textview.c index 3de317a17..4cc9552cb 100644 --- a/src/textview.c +++ b/src/textview.c @@ -1941,6 +1941,7 @@ static gboolean textview_uri_button_pressed(GtkTextTag *tag, GObject *obj, } compose_new(account, uri->uri + 7, NULL); } + return TRUE; } else { if (textview_uri_security_check(textview, uri) == TRUE) open_uri(uri->uri, -- 2.25.1