mirror of https://github.com/espruino/BangleApps
Merge pull request #3313 from paul-arg/messagegui
[messagegui] Fix: When user taps on a new message, clear unread timeoutpull/3331/head
commit
34341fae71
|
@ -104,3 +104,4 @@
|
||||||
0.75: Handle text with images in messages list by just displaying the first line
|
0.75: Handle text with images in messages list by just displaying the first line
|
||||||
0.76: Swipe up/down on a shown message to show the next newer/older message.
|
0.76: Swipe up/down on a shown message to show the next newer/older message.
|
||||||
0.77: Messages can now use international fonts if they are installed
|
0.77: Messages can now use international fonts if they are installed
|
||||||
|
0.78: Fix: When user taps on a new message, clear the unread timeout
|
||||||
|
|
|
@ -233,6 +233,7 @@ function showMusicMessage(msg) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function showMessageScroller(msg) {
|
function showMessageScroller(msg) {
|
||||||
|
cancelReloadTimeout();
|
||||||
active = "scroller";
|
active = "scroller";
|
||||||
var bodyFont = fontBig;
|
var bodyFont = fontBig;
|
||||||
g.setFont(bodyFont);
|
g.setFont(bodyFont);
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "messagegui",
|
"id": "messagegui",
|
||||||
"name": "Message UI",
|
"name": "Message UI",
|
||||||
"shortName": "Messages",
|
"shortName": "Messages",
|
||||||
"version": "0.77",
|
"version": "0.78",
|
||||||
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
|
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"type": "app",
|
"type": "app",
|
||||||
|
|
Loading…
Reference in New Issue