Revert "use the right namespace"

This reverts commit 067ec2eafcbe6d8852fbcdb1a6451210050fdcc1.
This commit is contained in:
Eike Hein 2019-04-10 06:54:30 +09:00
parent a280cccfde
commit 846741f851
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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