aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/fonts/main.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-29 22:25:11 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-30 09:51:36 +0000
commit19e7cc53a7189c5c35a478d06b435433297771c5 (patch)
treea1b1958cdaf36813b362b943acc4a55ba5294b27 /tests/manual/fonts/main.qml
parent390fb0d4a8e4f308b225a86b48205b14633cf0e2 (diff)
Simplify TextField & TextArea placeholder
Better not expose the extra Text item in the API. Ideally it should be implemented as a scenegraph node. We might even want to promote the placeholderText property (and add placeholderColor) to TextInput and TextEdit in Qt Quick core. Change-Id: I4f443c77d1c696b87a50ee184f868713dd50316f Reviewed-by: Liang Qi <liang.qi@theqtcompany.com>
Diffstat (limited to 'tests/manual/fonts/main.qml')
-rw-r--r--tests/manual/fonts/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/fonts/main.qml b/tests/manual/fonts/main.qml
index d59e9c1d..7bf9a0a7 100644
--- a/tests/manual/fonts/main.qml
+++ b/tests/manual/fonts/main.qml
@@ -80,8 +80,8 @@ ApplicationWindow {
text: "TabButton"
font.pointSize: control.font.pointSize
}
- TextField { placeholder.text: "TextField" }
- TextArea { placeholder.text: "TextArea" }
+ TextField { placeholderText: "TextField" }
+ TextArea { placeholderText: "TextArea" }
ToolButton { text: "ToolButton" }
Tumbler { model: 3 }
}