do not trigger change of unchanged messages on conversation reset

pull/935/head
Audric Ackermann 5 years ago
parent 2d1739a1e7
commit a52127de5d
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -330,9 +330,13 @@
resetMessageSelection() {
this.selectedMessages.clear();
this.messageCollection.forEach(m => {
// eslint-disable-next-line no-param-reassign
m.selected = false;
m.trigger('change');
// on change for ALL messages without real changes is a really costly operation
// -> cause refresh of the whole conversation view even if not a single message was selected
if (m.selected) {
// eslint-disable-next-line no-param-reassign
m.selected = false;
m.trigger('change');
}
});
this.trigger('message-selection-changed');

Loading…
Cancel
Save