summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-08-27 10:21:19 +0000
committeralecpl <alec@alec.pl>2010-08-27 10:21:19 +0000
commit196d04f4884ff9dd4dc6d59e5b392a06f14caa6d (patch)
tree633155914c0f4c8cb499a420a68e661c8157c7fb /program/js
parent65060100b65f6c6b4c5dc3962fbcbcf1977d0371 (diff)
- Fix "Select all" causes message to be opened in folder with exactly one message (#1486913)
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 4df147b53..b129e9881 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -715,10 +715,12 @@ function rcube_webmail()
case 'select-all':
this.select_all_mode = props ? false : true;
+ this.dummy_select = true; // prevent msg opening if there's only one msg on the list
if (props == 'invert')
this.message_list.invert_selection();
else
this.message_list.select_all(props == 'page' ? '' : props);
+ this.dummy_select = null;
break;
case 'select-none':
@@ -1370,7 +1372,7 @@ function rcube_webmail()
this.select_all_mode = false;
// start timer for message preview (wait for double click)
- if (selected && this.env.contentframe && !list.multi_selecting)
+ if (selected && this.env.contentframe && !list.multi_selecting && !this.dummy_select)
this.preview_timer = window.setTimeout(function(){ ref.msglist_get_preview(); }, 200);
else if (this.env.contentframe)
this.show_contentframe(false);