use the right namespace

This commit is contained in:
Marco Martin 2019-04-09 15:40:06 +02:00
parent 7687ffa3da
commit 067ec2eafc
3 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ T.ComboBox {
}
}
Private.MobileCursor {
MobileTextSelection.MobileCursor {
target: textField
selectionStartHandle: true
property var rect: textField.positionToRectangle(textField.selectionStart)

View File

@ -69,7 +69,7 @@ T.TextArea {
selectWord();
}
Private.MobileCursor {
MobileTextSelection.MobileCursor {
target: control
selectionStartHandle: true
property var rect: target.positionToRectangle(target.selectionStart)

View File

@ -52,7 +52,7 @@ T.TextField {
cursorDelegate: Kirigami.Settings.tabletMode ? mobileCursor : null
Component {
id: mobileCursor
Private.MobileCursor {
MobileTextSelection.MobileCursor {
target: control
}
}