aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index a557f64a98..e2013bc52d 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -633,6 +633,12 @@ etable_key (ETable *table, int row, int col, GdkEvent *ev, FolderBrowser *fb)
static void
on_double_click (ETable *table, gint row, gint col, GdkEvent *event, FolderBrowser *fb)
{
+ /* Ignore double-clicks on columns where single-click doesn't
+ * just select.
+ */
+ if (MESSAGE_LIST_COLUMN_IS_ACTIVE (col))
+ return;
+
view_msg (NULL, fb);
}