diff --git a/declarativeimports/test/gallery/TextEditing.qml b/declarativeimports/test/gallery/TextEditing.qml index b2a7ef3c2..08db3262b 100644 --- a/declarativeimports/test/gallery/TextEditing.qml +++ b/declarativeimports/test/gallery/TextEditing.qml @@ -45,17 +45,22 @@ PlasmaComponents.Page { onClicked: editThing.forceActiveFocus(); } - Item { + Column { id: editThing anchors.centerIn: parent width: 300 height: 300 + spacing: 12 + Item { height: 60; width: parent.width; } + PlasmaComponents.TextField { - anchors.centerIn: parent placeholderText: "Try copy & paste" } - - + PlasmaComponents.TextArea { + width: parent.width + height: 200 + placeholderText: "Touch copy & paste not implemented yet." + } } }