diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-10-28 08:59:53 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-10-29 00:24:09 (GMT) |
commit | 33f7a5d7f64dd0eed23a83f785f92466611dbc40 (patch) | |
tree | 58adc995d4dd49aedc85379d895c84dc6e09bbb2 /tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml | |
parent | 46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0 (diff) | |
download | Qt-33f7a5d7f64dd0eed23a83f785f92466611dbc40.zip Qt-33f7a5d7f64dd0eed23a83f785f92466611dbc40.tar.gz Qt-33f7a5d7f64dd0eed23a83f785f92466611dbc40.tar.bz2 |
Clean up qmlvisual/qdeclarativetextinput visual tests
Platform visuals and some cleanup after extended neglect
Task-number: QTBUG-14792
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml')
-rw-r--r-- | tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml index 973462a..69dc32a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml @@ -11,8 +11,8 @@ import QtQuick 1.0 Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} opacity: 1 SequentialAnimation on opacity { running: cPage.parent.focus == true; loops: Animation.Infinite; - NumberAnimation { properties: "opacity"; to: 1; duration: 500; easing.type: "InQuad"} - NumberAnimation { properties: "opacity"; to: 0; duration: 500; easing.type: "OutQuad"} + NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} + NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} } } width: 1; |