aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-07-28 02:37:51 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-07-28 02:37:51 +0000
commit3570f42fe4dca9977b7e06fe8602f28927d12fa6 (patch)
treeb56ecb0482e3785b21e55ee06135b2a866427085 /src/mainwindow.c
parent2323f838dbf605f498b953bc9d75657639d131f4 (diff)
improved the always-show-msg-on-summary-select mode (don't mark as read on automatic selection).
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2636 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r--src/mainwindow.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 83c5a6b2..b00fb148 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -3785,6 +3785,7 @@ static void prev_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
return;
summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
+ summary_mark_displayed_read(mainwin->summaryview, NULL);
}
static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
@@ -3797,6 +3798,7 @@ static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
return;
summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
+ summary_mark_displayed_read(mainwin->summaryview, NULL);
}
static void prev_unread_cb(MainWindow *mainwin, guint action,