mirror of https://github.com/espruino/BangleApps
Merge pull request #3677 from thyttan/messagegui
messagegui: fix assign entry to menu, not msg objpull/3679/head
commit
1bd657ad2f
|
@ -112,3 +112,4 @@
|
|||
Add top-right menu to music playback to allow message to be deleted
|
||||
0.82: Stop buzzing when a message is removed (e.g. call answered)
|
||||
0.83: Add option to not open the first unread message
|
||||
0.84: Fix: Assign show message entry to the settings menu and not the message itself.
|
||||
|
|
|
@ -283,7 +283,7 @@ function showMessageSettings(msg) {
|
|||
};
|
||||
|
||||
if (msg.id!="music")
|
||||
msg[/*LANG*/"View Message"] = () => showMessageScroller(msg);
|
||||
menu[/*LANG*/"View Message"] = () => showMessageScroller(msg);
|
||||
|
||||
if (msg.reply && reply) {
|
||||
menu[/*LANG*/"Reply"] = () => {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "messagegui",
|
||||
"name": "Message UI",
|
||||
"shortName": "Messages",
|
||||
"version": "0.83",
|
||||
"version": "0.84",
|
||||
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
|
||||
"icon": "app.png",
|
||||
"type": "app",
|
||||
|
|
Loading…
Reference in New Issue