PR cleanup

pull/6604/head
Aleksander Machniak 6 years ago
parent e5f5e6576d
commit 82c495e6b4

@ -40,6 +40,7 @@ CHANGELOG Roundcube Webmail
- Elastic: Improved UX of search dialogs (#6416) - Elastic: Improved UX of search dialogs (#6416)
- Elastic: Fix unwanted thread expanding when selecting a collapsed thread in non-mobile mode (#6445) - Elastic: Fix unwanted thread expanding when selecting a collapsed thread in non-mobile mode (#6445)
- Elastic: Add "status bar" for mobile in mail composer - Elastic: Add "status bar" for mobile in mail composer
- Elastic: Add selection options on contacts list (#6595)
- Log errors caused by low pcre.backtrack_limit when sending a mail message (#6433) - Log errors caused by low pcre.backtrack_limit when sending a mail message (#6433)
- Fix so max_message_size limit is checked also when forwarding messages as attachments (#6580) - Fix so max_message_size limit is checked also when forwarding messages as attachments (#6580)
- Fix so performance stats are logged to the main console log also when per_user_logging=true - Fix so performance stats are logged to the main console log also when per_user_logging=true

@ -1116,11 +1116,11 @@ function rcube_webmail()
case 'select-all': case 'select-all':
this.select_all_mode = props ? false : true; this.select_all_mode = props ? false : true;
this.dummy_select = true; // prevent msg opening if there's only one msg on the list this.dummy_select = true; // prevent msg opening if there's only one msg on the list
var list = this.task == 'addressbook' ? 'contact_list' : 'message_list'; var list = this[this.task == 'addressbook' ? 'contact_list' : 'message_list'];
if (props == 'invert') if (props == 'invert')
this[list].invert_selection(); list.invert_selection();
else else
this[list].select_all(props == 'page' ? '' : props); list.select_all(props == 'page' ? '' : props);
this.dummy_select = null; this.dummy_select = null;
break; break;

Loading…
Cancel
Save