mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 01:17:04 +03:00
Resolve #447
This commit is contained in:
parent
7a7b11bdeb
commit
f56102dd88
1 changed files with 7 additions and 5 deletions
|
|
@ -108,11 +108,13 @@ export class MailFolderList extends AbstractViewLeft {
|
||||||
setFolderHash(folder.fullName, '');
|
setFolderHash(folder.fullName, '');
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
hasher.setHash(
|
let search = '';
|
||||||
mailBox(folder.fullNameHash, 1,
|
if (event.target.matches('.flag-icon') && !folder.isFlagged()) {
|
||||||
(event.target.matches('.flag-icon') && !folder.isFlagged()) ? 'flagged' : ''
|
search = 'flagged';
|
||||||
)
|
} else if (folder.printableUnreadCount() && event.clientX > el.getBoundingClientRect().right - 25) {
|
||||||
);
|
search = 'unseen';
|
||||||
|
}
|
||||||
|
hasher.setHash(mailBox(folder.fullNameHash, 1, search));
|
||||||
}
|
}
|
||||||
|
|
||||||
AppUserStore.focusedState(Scope.MessageList);
|
AppUserStore.focusedState(Scope.MessageList);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue