1
0
Fork 0

fix clockmode setting

master
ps-igel 2022-05-10 22:53:08 +02:00 committed by GitHub
parent d88c176fed
commit 4e8136dc4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -32,10 +32,10 @@
}
},
"Exit press:": {
value: !settings.debugMode, // ! converts undefined to true
value: !settings.clockMode, // ! converts undefined to true
format: v => v?"short":"long",
onchange: v => {
settings.debugMode = v;
settings.clockMode = v;
writeSettings();
},
},
@ -67,4 +67,4 @@
}
// Show the menu
E.showMenu(settingsMenu);
})
})