Skip to content

Commit 236a4c8

Browse files
author
thyttan
committed
messagegui: fix assign entry to menu, not msg obj
1 parent f34a9bf commit 236a4c8

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

apps/messagegui/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,4 @@
112112
Add top-right menu to music playback to allow message to be deleted
113113
0.82: Stop buzzing when a message is removed (e.g. call answered)
114114
0.83: Add option to not open the first unread message
115+
0.84: Fix: Assign show message entry to the settings menu and not the message itself.

apps/messagegui/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ function showMessageSettings(msg) {
283283
};
284284

285285
if (msg.id!="music")
286-
msg[/*LANG*/"View Message"] = () => showMessageScroller(msg);
286+
menu[/*LANG*/"View Message"] = () => showMessageScroller(msg);
287287

288288
if (msg.reply && reply) {
289289
menu[/*LANG*/"Reply"] = () => {

apps/messagegui/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "messagegui",
33
"name": "Message UI",
44
"shortName": "Messages",
5-
"version": "0.83",
5+
"version": "0.84",
66
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
77
"icon": "app.png",
88
"type": "app",

0 commit comments

Comments
 (0)