From: Colin Leroy Date: Sun, 3 Apr 2005 11:16:41 +0000 (+0000) Subject: 2005-04-03 [colin] 1.9.6cvs23 X-Git-Tag: rel_1_9_9~40 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=913b78fcf3762bf723a238862df7e02b3343b907 2005-04-03 [colin] 1.9.6cvs23 * src/summaryview.c Don't handle up/down. Patch by Alfons --- diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index 5f22457de..6dea0419a 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,8 @@ +2005-04-03 [colin] 1.9.6cvs23 + + * src/summaryview.c + Don't handle up/down. Patch by Alfons + 2005-04-02 [colin] 1.9.6cvs22 * src/summaryview.c diff --git a/PATCHSETS b/PATCHSETS index 5e5de5c67..e8ef54b66 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -439,3 +439,4 @@ ( cvs diff -u -r 1.1.2.1 -r 1.1.2.2 src/image_viewer.c; cvs diff -u -r 1.1.2.1 -r 1.1.2.2 src/image_viewer.h; cvs diff -u -r 1.49.2.37 -r 1.49.2.38 src/procmime.c; cvs diff -u -r 1.17.2.8 -r 1.17.2.9 src/procmime.h; cvs diff -u -r 1.96.2.51 -r 1.96.2.52 src/textview.c; cvs diff -u -r 1.12.2.4 -r 1.12.2.5 src/textview.h; ) > 1.9.6cvs20.patchset ( cvs diff -u -r 1.155.2.20 -r 1.155.2.21 src/Makefile.am; cvs diff -u -r 1.25.2.10 -r 1.25.2.11 src/stock_pixmap.c; cvs diff -u -r -1.1.2.1 -r -1.1.2.2 src/pixmaps/dir-noselect.xpm; cvs diff -u -r 0 -r 1 src/pixmaps/dir_noselect.xpm; ) > 1.9.6cvs21.patchset ( cvs diff -u -r 1.395.2.63 -r 1.395.2.64 src/summaryview.c; ) > 1.9.6cvs22.patchset +( cvs diff -u -r 1.395.2.64 -r 1.395.2.65 src/summaryview.c; ) > 1.9.6cvs23.patchset diff --git a/configure.ac b/configure.ac index 308dbe438..b4df507ef 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=22 +EXTRA_VERSION=23 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/summaryview.c b/src/summaryview.c index 5711e3e3c..72eeb7a7c 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -4436,27 +4436,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) {