Comment 6 for bug 1163855

Revision history for this message
Nekhelesh Ramananthan (nik90) wrote : Re: [clock app] Stopwatch needs to show 1/100th of a second in the label for better accuracy

We have a small issue with the implementation. Currently the stopwatch timer runs every 100 miliseconds (1/10th of a second). In order for it to display 1/100th of a second, the stopwatch timer must run every 10 milliseconds. However the QML Timer has limitations for the minimum time which is 16 ms mentioned at http://harmattan-dev.nokia.com/docs/library/html/qt4/qml-timer.html. Hence it would not be possible to display 1/100th of a second (called centisecond) but we can only display 1/10th of a second (called decisecond).

Is this ok? Or should we scrap it altogether and just diplay hh:mm:ss? Need design decision on this.