mirror of https://github.com/espruino/BangleApps
recorder:fix exit graph/plot goes back two levels
parent
1b1d2c088f
commit
790f60b432
|
@ -49,3 +49,5 @@
|
|||
0.39: Minor code improvements
|
||||
0.40: Fix reference error from missing `settings` object in widget on 1 sec recordings with gps.
|
||||
Fix HRM source never being set in output data
|
||||
0.41: Fix exit from plots and graphs would easily react twice, going back two
|
||||
levels instead of one.
|
||||
|
|
|
@ -311,7 +311,7 @@ function plotTrack(info) { "ram"
|
|||
g.drawString(/*LANG*/"Back",g.getWidth() - 10, isBTN3 ? (g.getHeight() - 40) : (g.getHeight()/2));
|
||||
setWatch(function() {
|
||||
viewTrack(info.fn, info);
|
||||
}, isBTN3?BTN3:BTN1);
|
||||
}, isBTN3?BTN3:BTN1, {edge:"falling"});
|
||||
Bangle.drawWidgets();
|
||||
g.flip();
|
||||
}
|
||||
|
@ -432,9 +432,9 @@ function plotGraph(info, style) { "ram"
|
|||
g.drawString(/*LANG*/"Back",g.getWidth() - 10, isBTN3 ? (g.getHeight() - 40) : (g.getHeight()/2));
|
||||
setWatch(function() {
|
||||
viewTrack(info.filename, info);
|
||||
}, isBTN3?BTN3:BTN1);
|
||||
}, isBTN3?BTN3:BTN1, {edge:"falling"});
|
||||
g.flip();
|
||||
}
|
||||
|
||||
|
||||
showMainMenu();
|
||||
showMainMenu();
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "recorder",
|
||||
"name": "Recorder",
|
||||
"shortName": "Recorder",
|
||||
"version": "0.40",
|
||||
"version": "0.41",
|
||||
"description": "Record GPS position, heart rate and more in the background, then download to your PC.",
|
||||
"icon": "app.png",
|
||||
"tags": "tool,outdoors,gps,widget,clkinfo",
|
||||
|
|
Loading…
Reference in New Issue