mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
12hr time fix. no 0:00pm
This commit is contained in:
parent
52bb03eb52
commit
90bae964ce
@ -498,6 +498,8 @@ QString formatTime(EventDataType v, bool show_seconds=false, bool duration=false
|
||||
if (show_12hr) {
|
||||
h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted..
|
||||
h %= 12;
|
||||
if (h==0) h=12;
|
||||
|
||||
} else {
|
||||
pm[0]=0;
|
||||
}
|
||||
|
@ -264,6 +264,7 @@ const QString gYAxisTime::Format(EventDataType v, int dp)
|
||||
if (show_12hr) {
|
||||
h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted..
|
||||
h %= 12;
|
||||
if (h==0) h=12;
|
||||
} else {
|
||||
pm[0]=0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user