Skip to content

Commit

Permalink
messagegui: add FIXME comment
Browse files Browse the repository at this point in the history
  • Loading branch information
thyttan committed Feb 2, 2025
1 parent b466c40 commit 40b5f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/messagegui/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ function showMessagesScroller(msg, persist) {
for (let i=0 ; i<MESSAGES.length ; i++) {
if (MSG_IDX === i) {initScroll = allLines.length*FONT_HEIGHT}
let msgIter = MESSAGES[i];
msgIter.new = false;
msgIter.new = false; // FIXME: Update "new" status in the scrollers draw method instead. A message should not be marked as read if it has not been displayed on screen.

var lines = [];
const TITLE_STRING = msgIter.title||msgIter.sender||msgIter.subject||msgIter.src||/*LANG*/"No Title";
Expand Down

0 comments on commit 40b5f4c

Please sign in to comment.