From fdc5a9b68e945c0df89f50a9d965b6109c0d2d08 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Sat, 11 Mar 2006 11:54:38 +0000 Subject: [PATCH] 2006-03-11 [colin] 2.0.0cvs132 * src/summaryview.c Revert 2.0.0cvs84 which reverted 1.9.6cvs23 which messed up shift-selection because is slows down moving around summaryview. thanks -users --- ChangeLog | 7 +++++++ PATCHSETS | 1 + configure.ac | 2 +- src/summaryview.c | 21 --------------------- 4 files changed, 9 insertions(+), 22 deletions(-) diff --git a/ChangeLog b/ChangeLog index e30a832c8..f19d0e91d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-03-11 [colin] 2.0.0cvs132 + + * src/summaryview.c + Revert 2.0.0cvs84 which reverted 1.9.6cvs23 which + messed up shift-selection because is slows down + moving around summaryview. thanks -users + 2006-03-10 [colin] 2.0.0cvs131 * src/plugins/spamassassin/spamassassin_gtk.c diff --git a/PATCHSETS b/PATCHSETS index de3fe67d8..003ee7a50 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1316,3 +1316,4 @@ ( cvs diff -u -r 1.1.2.16 -r 1.1.2.17 src/prefs_msg_colors.c; cvs diff -u -r 1.5.2.19 -r 1.5.2.20 src/prefs_spelling.c; ) > 2.0.0cvs129.patchset ( cvs diff -u -r 1.18.2.30 -r 1.18.2.31 src/plugins/spamassassin/spamassassin.c; cvs diff -u -r 1.4.2.10 -r 1.4.2.11 src/plugins/spamassassin/spamassassin.h; cvs diff -u -r 1.23.2.23 -r 1.23.2.24 src/plugins/spamassassin/spamassassin_gtk.c; ) > 2.0.0cvs130.patchset ( cvs diff -u -r 1.23.2.24 -r 1.23.2.25 src/plugins/spamassassin/spamassassin_gtk.c; ) > 2.0.0cvs131.patchset +( cvs diff -u -r 1.395.2.180 -r 1.395.2.181 src/summaryview.c; ) > 2.0.0cvs132.patchset diff --git a/configure.ac b/configure.ac index 54f9caa2a..9452d2f87 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=131 +EXTRA_VERSION=132 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/summaryview.c b/src/summaryview.c index be61530d2..03166ef1e 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -4808,27 +4808,6 @@ static gboolean summary_key_pressed(GtkWidget *widget, GdkEventKey *event, case GDK_Escape: gtk_widget_grab_focus(summaryview->folderview->ctree); return TRUE; - case GDK_Up: - case GDK_Down: - if ((node = summaryview->selected) != NULL) { - GtkCTreeNode *next = NULL; - do { - next = (event->keyval == GDK_Down) - ? gtkut_ctree_node_next(ctree, next ? next:node) - : gtkut_ctree_node_prev(ctree, next ? next:node); - } while (next && !gtk_ctree_is_viewable(ctree, next)); - - if (next) { - gtk_sctree_select_with_state - (GTK_SCTREE(ctree), next, event->state); - - /* Deprecated - what are the non-deprecated equivalents? */ - if (gtk_ctree_node_is_visible(GTK_CTREE(ctree), next) != GTK_VISIBILITY_FULL) - gtk_ctree_node_moveto(GTK_CTREE(ctree), next, 0, 0, 0); - summaryview->selected = next; - } - } - return TRUE; case GDK_Home: case GDK_End: if ((node = summaryview->selected) != NULL) { -- 2.25.1