summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-10-28 08:57:01 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-10-29 00:23:58 (GMT)
commit46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0 (patch)
tree786b46fb899a110f475f39d24f018d0e1a2aef9f /tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml
parentd1b0b364fc2c944ec5cf67ed9a3282881f4c324c (diff)
downloadQt-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.qml5
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'}
}
}