Timer countdown transition to tenths of seconds #3


  • New
  • Enhancment
Open
Assigned to ardentvark
  • Tojaso1 created this issue Mar 14, 2009

    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.

  • Tojaso1 added the tags New Enhancment Mar 14, 2009
  • Tojaso1 edited title Mar 14, 2009

To post a comment, please login or register a new account.