Changed wording a bit

pull/225/head
Simon Weis 2020-04-04 17:50:23 +02:00
parent 90e49c215a
commit dd2b820587
2 changed files with 6 additions and 6 deletions

View File

@ -4,4 +4,4 @@
0.05: Fix Settings json 0.05: Fix Settings json
0.06: Remove distance setting as there's a separate app for Locale now 0.06: Remove distance setting as there's a separate app for Locale now
0.07: Added vibrate as beep workaround 0.07: Added vibrate as beep workaround
0.08: Add auto-on settings 0.08: Added LCD wake-up settings

View File

@ -140,7 +140,7 @@ function showMainMenu() {
} }
}, },
'Set Time': showSetTimeMenu, 'Set Time': showSetTimeMenu,
'Auto-On': showAutoOnMenu, 'LCD Wake-Up': showWakeUpMenu,
'Reset Settings': showResetMenu, 'Reset Settings': showResetMenu,
'Turn Off': Bangle.off, 'Turn Off': Bangle.off,
'< Back': () => { load(); } '< Back': () => { load(); }
@ -148,9 +148,9 @@ function showMainMenu() {
return E.showMenu(mainmenu); return E.showMenu(mainmenu);
} }
function showAutoOnMenu() { function showWakeUpMenu() {
const autoOnMenu = { const wakeUpMenu = {
'': { 'title': 'Auto-On' }, '': { 'title': 'LCD Wake-Up' },
'< Back': showMainMenu, '< Back': showMainMenu,
'Wake On BTN1': { 'Wake On BTN1': {
value: settings.options.wakeOnBTN1, value: settings.options.wakeOnBTN1,
@ -231,7 +231,7 @@ function showAutoOnMenu() {
} }
} }
} }
return E.showMenu(autoOnMenu) return E.showMenu(wakeUpMenu)
} }
function showLocaleMenu() { function showLocaleMenu() {