From: Paul Mangan Date: Thu, 17 Mar 2005 08:26:03 +0000 (+0000) Subject: 2005-03-17 [paul] 1.0.3cvs2.2 X-Git-Tag: rel_1_9_6~6 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=a6fd2b99b02c2f189595bcdbbf5a0f8a0d5399f4;hp=ee1544bb29fa51843d32cbc2308e0a68c52df62a 2005-03-17 [paul] 1.0.3cvs2.2 * src/gtk/pluginwindow.c make plugin descriptions uneditable --- diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index 380b1f9eb..91904de0c 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,8 @@ +2005-03-17 [paul] 1.0.3cvs2.2 + + * src/gtk/pluginwindow.c + make plugin descriptions uneditable + 2005-03-11 [paul] 1.0.3cvs2.1 * ChangeLog.claws diff --git a/PATCHSETS b/PATCHSETS index d5ad21ab3..998bcbb5c 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -410,3 +410,4 @@ ( cvs diff -u -r 1.382.2.109 -r 1.382.2.110 src/compose.c; ) > 1.0.1cvs22.2.patchset ( cvs diff -u -r 1.396.2.22 -r 1.396.2.23 ChangeLog; cvs diff -u -r 1.2504.2.51 -r 1.2504.2.52 ChangeLog.claws; cvs diff -u -r 1.654.2.444 -r 1.654.2.445 configure.ac; cvs diff -u -r 1.58.2.7 -r 1.58.2.8 po/de.po; cvs diff -u -r 1.60.2.8 -r 1.60.2.9 po/es.po; cvs diff -u -r 1.42.2.8 -r 1.42.2.9 po/fr.po; cvs diff -u -r 1.34.2.7 -r 1.34.2.8 po/it.po; cvs diff -u -r 1.50.2.6 -r 1.50.2.7 po/pt_BR.po; cvs diff -u -r 1.17.2.5 -r 1.17.2.6 po/ru.po; cvs diff -u -r 1.2.2.9 -r 1.2.2.10 po/sk.po; cvs diff -u -r 1.17.2.9 -r 1.17.2.10 po/sr.po; cvs diff -u -r 1.5.2.5 -r 1.5.2.6 po/zh_CN.po; ) > 1.0.3cvs1.1.patchset ( cvs diff -u -r 1.2504.2.52 -r 1.2504.2.53 ChangeLog.claws; cvs diff -u -r 1.654.2.445 -r 1.654.2.446 configure.ac; cvs diff -u -r 1.53.2.8 -r 1.53.2.9 po/POTFILES.in; cvs diff -u -r 1.14.2.15 -r 1.14.2.16 src/plugins/trayicon/trayicon.c; ) > 1.0.3cvs2.1.patchset +( cvs diff -u -r 1.5.2.12 -r 1.5.2.13 src/gtk/pluginwindow.c; ) > 1.0.3cvs2.2.patchset diff --git a/configure.ac b/configure.ac index 69c60bcc9..64d0f37b9 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ INTERFACE_AGE=0 BINARY_AGE=0 EXTRA_VERSION=2 EXTRA_RELEASE= -EXTRA_GTK2_VERSION=.1 +EXTRA_GTK2_VERSION=.2 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/gtk/pluginwindow.c b/src/gtk/pluginwindow.c index c240f8a8b..3b3fa9153 100644 --- a/src/gtk/pluginwindow.c +++ b/src/gtk/pluginwindow.c @@ -85,6 +85,8 @@ static void set_plugin_list(PluginWindow *pluginwindow) gtk_list_store_clear(store); textbuf = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pluginwindow->plugin_desc)); + gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(pluginwindow->plugin_desc), FALSE); + gtk_text_view_set_editable(GTK_TEXT_VIEW(pluginwindow->plugin_desc), FALSE); gtk_text_buffer_get_start_iter(textbuf, &start_iter); gtk_text_buffer_get_end_iter(textbuf, &end_iter); gtk_text_buffer_delete(textbuf, &start_iter, &end_iter);