[Settings] Fix the time zone format

A positive value is shown as '+X' instead of 'X'
pull/1773/head
Alessandro Cocco 2022-05-02 11:55:05 +02:00
parent 74db2585d7
commit ec4ba0d0a7
1 changed files with 1 additions and 0 deletions

View File

@ -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,