diff options
| author | Caroline Chao <caroline.chao@digia.com> | 2013-02-25 12:21:53 +0100 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-02-25 18:58:20 +0100 |
| commit | 1194c467b29e98217a95c4d37864c85b34ec8317 (patch) | |
| tree | 0fe7b1a8748801bf5c32f833acbe66f7773aae05 /examples/touch/content/TextInputPage.qml | |
| parent | 3543e0fd8e5c43793530f0964ef92b5f39363dd8 (diff) | |
TestBench: Make one text field readonly
In the text input page.
Change-Id: I1f8710380fc0886dec3963b32c65a18ad8c558b5
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'examples/touch/content/TextInputPage.qml')
| -rw-r--r-- | examples/touch/content/TextInputPage.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/touch/content/TextInputPage.qml b/examples/touch/content/TextInputPage.qml index 6f746171a..fd84d05e4 100644 --- a/examples/touch/content/TextInputPage.qml +++ b/examples/touch/content/TextInputPage.qml @@ -76,8 +76,9 @@ Page { TextField { anchors.margins: 20 - text: "Disabled Text input" + text: "Readonly Text input" style: touchStyle + readOnly: true } } Component { |
