aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml b/tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml
new file mode 100644
index 0000000000..849e4b8597
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml
@@ -0,0 +1,13 @@
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+ TextEdit {
+ id: textEdit
+ text: "и в у"
+ anchors.centerIn: parent
+ Component.onCompleted: textEdit.select(2, 3)
+ font.pixelSize: 14
+ }
+}