mirror of https://github.com/espruino/BangleApps
[Settings] Fix the time zone format
A positive value is shown as '+X' instead of 'X'pull/1773/head
parent
74db2585d7
commit
ec4ba0d0a7
|
@ -479,6 +479,7 @@ function showLocaleMenu() {
|
|||
'< Back': ()=>showSystemMenu(),
|
||||
/*LANG*/'Time Zone': {
|
||||
value: settings.timezone,
|
||||
format: v => (v > 0 ? "+" : "") + v,
|
||||
min: -11,
|
||||
max: 13,
|
||||
step: 0.5,
|
||||
|
|
Loading…
Reference in New Issue