I guess that is something I will have to get used to.
Well, the idea of Bangle.js if you don't have to if it bothers you. The handler for when you press the button on a message is here:
https://github.com/espruino/BangleApps/blob/master/apps/messagegui/app.js#L343-L348
If you change it to:
function goBack() { layout = undefined; msg.new = false; // read mail load(); // the 'kill' event handler calls saveMessages }
and upload it'll probably do what you want. It could even be made into an option in the messages app.
I took me some figuring out how to get the edited file on the watch, but that definitely did the trick!
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Well, the idea of Bangle.js if you don't have to if it bothers you. The handler for when you press the button on a message is here:
https://github.com/espruino/BangleApps/blob/master/apps/messagegui/app.js#L343-L348
If you change it to:
and upload it'll probably do what you want. It could even be made into an option in the messages app.