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:
parent
f6ba37dbc5
commit
cc295a4c4c
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user