From 99cb08c41cf5fa66cf07db07902999570d456959 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 25 Aug 2016 08:44:36 +0200 Subject: [PATCH] Fix so "All" messages selection is resetted on search reset (#5413) --- CHANGELOG | 1 + program/js/app.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 2622918a3..64a53a31d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -46,6 +46,7 @@ CHANGELOG Roundcube Webmail - Fix bug where blocked.gif couldn't be attached to reply/forward with insecure content - Fix E_DEPRECATED warning when using Auth_SASL::factory() (#5401) - Fix bug where names of downloaded files could be malformed when derived from the message subject (#5404) +- Fix so "All" messages selection is resetted on search reset (#5413) RELEASE 1.2.1 ------------- diff --git a/program/js/app.js b/program/js/app.js index b8cea98ef..b8fb81682 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1263,7 +1263,6 @@ function rcube_webmail() var n, s = this.env.search_request || this.env.qsearch; this.reset_qsearch(true); - this.select_all_mode = false; if (s && this.env.action == 'compose') { if (this.contact_list) @@ -5081,6 +5080,7 @@ function rcube_webmail() this.env.qsearch = null; this.env.search_request = null; this.env.search_id = null; + this.select_all_mode = false; this.enable_command('set-listmode', this.env.threads); };