2006-03-11 [colin] 2.0.0cvs132
authorColin Leroy <colin@colino.net>
Sat, 11 Mar 2006 11:54:38 +0000 (11:54 +0000)
committerColin Leroy <colin@colino.net>
Sat, 11 Mar 2006 11:54:38 +0000 (11:54 +0000)
* 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
PATCHSETS
configure.ac
src/summaryview.c

index e30a832c864fcadd081040abea59329287a1f002..f19d0e91d482d541a596171182c7f8897a9eb1b3 100644 (file)
--- 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
index de3fe67d835e7f44db4ab4e668358898b9eb8900..003ee7a50f6cd3417b8ea146bdba03b4bcca3596 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( 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
index 54f9caa2a7985ebdb861f27721fc412e61ac0cc9..9452d2f875cd777e02b841a57a145ae0c39f8fe6 100644 (file)
@@ -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=
 
index be61530d2ba0a01bfee530ec8fff897ac89ffbe7..03166ef1eb23347f34d60f875628f689bf8ca938 100644 (file)
@@ -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) {