From e65f017974f24134940e1d0b19a24995cfaeaf82 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Sat, 18 Mar 2006 19:58:43 +0000 Subject: [PATCH] 2006-03-18 [colin] 2.0.0cvs154 * src/textview.c Fix text cursor ;) --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/textview.c | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6acc5899b..3c5de6c27 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-18 [colin] 2.0.0cvs154 + + * src/textview.c + Fix text cursor ;) + 2006-03-18 [colin] 2.0.0cvs153 * src/gtk/filesel.c diff --git a/PATCHSETS b/PATCHSETS index 32b7d4796..4e9232738 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1339,3 +1339,4 @@ ( cvs diff -u -r 1.274.2.103 -r 1.274.2.104 src/mainwindow.c; cvs diff -u -r 1.96.2.102 -r 1.96.2.103 src/textview.c; cvs diff -u -r 1.12.2.10 -r 1.12.2.11 src/textview.h; ) > 2.0.0cvs151.patchset ( cvs diff -u -r 1.395.2.183 -r 1.395.2.184 src/summaryview.c; cvs diff -u -r 1.2.2.22 -r 1.2.2.23 src/gtk/filesel.c; ) > 2.0.0cvs152.patchset ( cvs diff -u -r 1.2.2.23 -r 1.2.2.24 src/gtk/filesel.c; ) > 2.0.0cvs153.patchset +( cvs diff -u -r 1.96.2.103 -r 1.96.2.104 src/textview.c; ) > 2.0.0cvs154.patchset diff --git a/configure.ac b/configure.ac index a4bab77ab..a5b74171d 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=0 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=153 +EXTRA_VERSION=154 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/textview.c b/src/textview.c index 67be7a358..3f49e4c1f 100644 --- a/src/textview.c +++ b/src/textview.c @@ -1752,7 +1752,7 @@ void textview_cursor_normal(TextView *textview) GdkWindow *window = gtk_text_view_get_window( GTK_TEXT_VIEW(textview->text), GTK_TEXT_WINDOW_TEXT); - gdk_window_set_cursor(window, NULL); + gdk_window_set_cursor(window, text_cursor); } static void textview_uri_update(TextView *textview, gint x, gint y) -- 2.25.1