diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-10-28 08:57:01 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-10-29 00:23:58 (GMT) |
commit | 46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0 (patch) | |
tree | 786b46fb899a110f475f39d24f018d0e1a2aef9f /tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml | |
parent | d1b0b364fc2c944ec5cf67ed9a3282881f4c324c (diff) | |
download | Qt-46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0.zip Qt-46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0.tar.gz Qt-46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0.tar.bz2 |
Cleanup qmlvisual/qdeclarativetextedit tests
Platform visuals and working again after a long period of neglect
Task-number: QTBUG-14792
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml')
-rw-r--r-- | tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml index 4cf7e97..f03e1cc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml @@ -1,13 +1,14 @@ import QtQuick 1.0 Rectangle{ - width: 600 - height: 200 + width: 280 + height: 140 Column{ MultilineEdit{ text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.'; width: 182; height: 60; } + Rectangle{height: 20; width: 20;}//Spacer MultilineEdit{text: 'Hello world'} } } |