mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-24 14:04:57 +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 => {
|
dblclick: event => {
|
||||||
let el = eqs(event, '.messageListItem');
|
let msg = ko.dataFor(eqs(event, '.messageListItem'));
|
||||||
el && this.gotoThread(ko.dataFor(el));
|
if (msg) {
|
||||||
|
msg.threadsLen() ? this.gotoThread(msg) : toggleFullscreen();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue