We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8c90b1 commit ca843d9Copy full SHA for ca843d9
apps/messagegui/app.js
@@ -337,16 +337,16 @@ function showMessagesScroller(msg) {
337
if (scrollIdx>shownScrollIdxLast) {shownScrollIdxLast = scrollIdx;}
338
},
339
select : function(scrollIdx, touch) {
340
- WU.show();
341
for (let i=firstTitleLinePerMsg.length-1; i>=0 ; i--) {
342
if (scrollIdx>=firstTitleLinePerMsg[i]) {
343
if (!touch || touch.type===0) {
+ WU.show();
344
showMessageRouter(MESSAGES[i], true, "overview");
345
+ updateReadMessages();
346
}
347
break;
348
349
- updateReadMessages();
350
351
});
352
0 commit comments