Set non-zero minimum for fade times.

QTimeLine duration must be greater than 0. If set to 0, a default of 1000ms will
be used. To avoid this, enforce a minimum of 1ms for pause and cross fade values
if those fades are enabled.
This commit is contained in:
Jim Broadus 2019-04-07 21:07:54 -07:00
parent f6ba37dbc5
commit cc295a4c4c
1 changed files with 6 additions and 0 deletions

View File

@ -88,6 +88,9 @@
<property name="suffix">
<string> ms</string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>10000</number>
</property>
@ -139,6 +142,9 @@
<property name="suffix">
<string> ms</string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>10000</number>
</property>