mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-23 21:44:34 +08:00
Resolve #1787
This commit is contained in:
parent
f7f8d2d542
commit
68045f50f6
1 changed files with 4 additions and 2 deletions
|
@ -629,8 +629,10 @@ export class MailMessageList extends AbstractViewRight {
|
|||
}
|
||||
},
|
||||
dblclick: event => {
|
||||
let el = eqs(event, '.messageListItem');
|
||||
el && this.gotoThread(ko.dataFor(el));
|
||||
let msg = ko.dataFor(eqs(event, '.messageListItem'));
|
||||
if (msg) {
|
||||
msg.threadsLen() ? this.gotoThread(msg) : toggleFullscreen();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue