In short of it goes for decimals and for displaying minutes of time i bet same goes for seconds
Screenshot
On the left it displays current zoom level
It should be 0,20 but it is 0,2
IF i go to 2,00 it will display just 2
On the right you have time and as you see instead of 11:00 it displays 11: 0
Same will happen if it will be 11:04 it will display 11: 4
"Zoom Q/E - " + SubStr(ToString(GlobalVariable(SaveStuff.ZoomLVL)),0,4)
I use this to print zoom variable and substr ,0,4 determine how many digits to display
But again if number is full for example 2.00 it will display just 2
And 0 is cut out
I know i can cheat my way trough it with
Condition
Zoom variable = 2
Action
"Zoom Q/E - " + SubStr(ToString(GlobalVariable(SaveStuff.ZoomLVL)),0,4) + “.00”
And that will add that 2 extra 0
But is there way to force it to display it via expression? Maybe i am doing something wrong?
Or am i doom to add event for each possible full digit?