From: Colin Leroy Date: Wed, 9 Oct 2002 12:25:19 +0000 (+0000) Subject: make space work when no mail is selected X-Git-Tag: w0-1~164 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=92fa7fbbc7ca3afc67bebfdfd5041883fb7e56ac make space work when no mail is selected --- diff --git a/ChangeLog.claws b/ChangeLog.claws index e8d2d2deb..2f27a5b68 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2002-10-09 [colin] 0.8.5claws6 + + * src/mainwindow.c + Make Space work when no mail is selected + 2002-10-09 [colin] 0.8.5claws5 * src/gtksctree.[ch] diff --git a/configure.in b/configure.in index bcd56b462..325999d79 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=5 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws5 +EXTRA_VERSION=claws6 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/mainwindow.c b/src/mainwindow.c index b58f8d578..105363804 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -3563,6 +3563,10 @@ static void key_pressed (GtkWidget *widget, GdkEventKey *event, gpointer data) app_exit_cb(mainwin, 0, NULL); return; + case GDK_space: + if (mainwin->summaryview && !mainwin->summaryview->selected) + summary_select_next_unread(mainwin->summaryview); + break; default: break; }