This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
What steps will reproduce the problem?1. Create any timer bar and observe remaining time as counter drops to 10 seconds.
What is the expected output? What do you see instead?
What I'd like to see is a smooth transition from displaying whole numbers of seconds (when >= 10 seconds) to displaying tenths of seconds (when < 10 seconds). Currently this transition happens somewhat randomly between 10 and 11 seconds left so you may sometimes first see tenths of a second at 10.2 or 10.8 or whatever.
What version of the product are you using?
r16
Please provide any additional information below.
I modified UpdateTimer code to address this. I replaced "elseif valueClamped > 10 then" with "elseif abs(value) >= 9.95 then". This makes the transition always happen consistently at 9.9 seconds.
To post a comment, please login or register a new account.