summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 590998f28..0933ca631 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1562,7 +1562,6 @@ function rcube_webmail()
// list messages of a specific mailbox
this.list_mailbox = function(mbox, page, sort)
{
- this.last_selected = 0;
var add_url = '';
var target = window;
@@ -1578,17 +1577,20 @@ function rcube_webmail()
add_url += '&_search='+this.env.search_request;
// set page=1 if changeing to another mailbox
- if (!page && mbox != this.env.mailbox)
+ if (!page)
{
page = 1;
this.env.current_page = page;
- if (this.message_list)
- this.message_list.clear_selection();
this.show_contentframe(false);
}
if (mbox != this.env.mailbox || (mbox == this.env.mailbox && !page && !sort))
add_url += '&_refresh=1';
+
+ // unselect selected messages
+ this.last_selected = 0;
+ if (this.message_list)
+ this.message_list.clear_selection();
this.select_folder(mbox, this.env.mailbox);
this.env.mailbox = mbox;