Paul2
June 10, 2019, 11:38am
#1
In SC 19.04.30 (under Mac and Windows), the timer has a bug in that it briefly shows 60 (for 1 frame) when going 59 sec to 1 minute and also from minute to minute.
The offset is also limited to 10 hours max, any reason?
It would be nice to allow the full 23:59:59 so as to be able to simulate a clock.
brian
June 10, 2019, 6:07pm
#2
This might be a rounding bug. Does the problem still occur if you choose the “MM:SS.SS” format?
10 hours was chosen arbitrarily and is easy to change.
I will bookmark this thread and look into these in the future.
In the mean time, you can hack your own installation to increase the 10 hours:
}
Label {
text: qsTr('Start Delay')
Layout.alignment: Qt.AlignRight
}
RowLayout {
spacing: 0
ClockSpinner {
id: startSpinner
maximumValue: 10 * 60 * 60 // 10 hours
onTimeStrChanged: {
filter.set('start', startSpinner.timeStr)
}
onSetDefaultClicked: {
startSpinner.timeStr = _defaultStart
}
ToolTip { text: "The timer will be frozen from the beginning of the filter until the Start Delay time has elapsed." }
}
Button {
iconName: 'insert'
Paul2
June 11, 2019, 8:59am
#3
Hi @brian
Thanks for the reply.
No, when MM:SS.SS or HH:MM:SS is selected it’s fine.
As regards the 10 hour limit, will do exactly what you suggest.
Thanks again.
brian
June 21, 2019, 3:39am
#4
I submitted a proposed fix for this:
This change was accepted for the next release v19.07.
system
Closed
December 20, 2019, 6:29pm
#6
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.