diff --git a/qml/AppUI/EditText.qml b/qml/AppUI/EditText.qml index 55f7040..3ddf695 100644 --- a/qml/AppUI/EditText.qml +++ b/qml/AppUI/EditText.qml @@ -100,6 +100,12 @@ Item { updateTextInputColor(); forceActiveFocus(); } + + MouseArea { + anchors.fill: parent + cursorShape: Qt.IBeamCursor + enabled: false + } } MouseArea { diff --git a/qml/AppUI/SearchInputBar.qml b/qml/AppUI/SearchInputBar.qml index a0d1e7a..364090b 100644 --- a/qml/AppUI/SearchInputBar.qml +++ b/qml/AppUI/SearchInputBar.qml @@ -130,4 +130,13 @@ UkuiItems.StyleBackground { textInput.clear(); } } + + MouseArea { + anchors.left: textInput.left + anchors.verticalCenter: parent.verticalCenter + width: clearButton.visible ? textInput.width : textInput.width + clearButton.width + height: parent.height + cursorShape: Qt.IBeamCursor + enabled: false + } }