summaryrefslogtreecommitdiffstats
path: root/src/controls/TextArea.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/TextArea.qml')
-rw-r--r--src/controls/TextArea.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controls/TextArea.qml b/src/controls/TextArea.qml
index 8acdb6dc5..c644230de 100644
--- a/src/controls/TextArea.qml
+++ b/src/controls/TextArea.qml
@@ -718,7 +718,7 @@ ScrollView {
TextEdit {
id: edit
focus: true
- cursorDelegate: __style && __style.cursorDelegate ? __style.cursorDelegate : null
+ cursorDelegate: __style && __style.__cursorDelegate ? __style.__cursorDelegate : null
Rectangle {
id: colorRect
@@ -885,7 +885,7 @@ ScrollView {
z: 1 // above scrollbars
parent: Qt.platform.os === "ios" ? editor : __scroller // no clip
active: area.selectByMouse
- delegate: __style.selectionHandle
+ delegate: __style.__selectionHandle
maximum: cursorHandle.position - 1
// Mention contentX and contentY in the mappedPos binding to force re-evaluation if they change
@@ -921,7 +921,7 @@ ScrollView {
z: 1 // above scrollbars
parent: Qt.platform.os === "ios" ? editor : __scroller // no clip
active: area.selectByMouse
- delegate: __style.cursorHandle
+ delegate: __style.__cursorHandle
minimum: edit.hasSelection ? selectionHandle.position + 1 : -1
// Mention contentX and contentY in the mappedPos binding to force re-evaluation if they change