From 7323f633f79d9b82670f9743d062846e6994f656 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 19 Jan 2017 14:01:10 +0100 Subject: [PATCH] Fix bug where re-selection of messages list record didn't work A regression in old commit 24fa5d31541 --- program/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/js/app.js b/program/js/app.js index b7cb021a652..930eeeabe24 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1859,7 +1859,7 @@ function rcube_webmail() if (list.multi_selecting || !this.env.contentframe) return; - if (list.get_single_selection()) + if (!list.get_single_selection()) return; var win = this.get_frame_window(this.env.contentframe);