Doc: velocity properties must be set to -1 when setting duration
This is an important detail that was left out, causing confusion when a user tries to set e.g. highlightMoveDuration without setting highlightMoveVelocity to -1. Change-Id: Ida4042626fcc20105267a5d2a0babcb91eed1516 Reviewed-by: Michael Brasser <michael.brasser@live.com>
This commit is contained in:
parent
cf5da3e8e2
commit
1b79a40466
|
@ -2456,7 +2456,18 @@ QString QQuickListView::currentSection() const
|
||||||
The default value for the duration properties is -1, i.e. the
|
The default value for the duration properties is -1, i.e. the
|
||||||
highlight will take as much time as necessary to move at the set speed.
|
highlight will take as much time as necessary to move at the set speed.
|
||||||
|
|
||||||
These properties have the same characteristics as a SmoothedAnimation.
|
These properties have the same characteristics as a SmoothedAnimation:
|
||||||
|
if both the velocity and duration are set, the animation will use
|
||||||
|
whichever gives the shorter duration.
|
||||||
|
|
||||||
|
To set only one property, the other can be set to \c -1. For example,
|
||||||
|
if you only want to animate the duration and not velocity, use the
|
||||||
|
following code:
|
||||||
|
|
||||||
|
\code
|
||||||
|
highlightMoveDuration: 1000
|
||||||
|
highlightMoveVelocity: -1
|
||||||
|
\endcode
|
||||||
|
|
||||||
\sa highlightFollowsCurrentItem
|
\sa highlightFollowsCurrentItem
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue