Skip to content

Commit

Permalink
Fix so "All" messages selection is resetted on search reset (#5413)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Aug 25, 2016
1 parent d885051 commit fed6078
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -12,6 +12,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
-------------
Expand Down
2 changes: 1 addition & 1 deletion program/js/app.js
Expand Up @@ -1247,7 +1247,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)
Expand Down Expand Up @@ -4969,6 +4968,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);
};
Expand Down

0 comments on commit fed6078

Please sign in to comment.