From 506a659301a2a3d6c1438120b0243739fb8539ff Mon Sep 17 00:00:00 2001 From: Leander Schulten Date: Tue, 29 Oct 2019 14:10:14 +0100 Subject: [PATCH] UI: TextInputField: Fix flicking Cursor --- src/qml/components/TextInputField.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/components/TextInputField.qml b/src/qml/components/TextInputField.qml index 138c464b..2eefcc64 100644 --- a/src/qml/components/TextInputField.qml +++ b/src/qml/components/TextInputField.qml @@ -14,7 +14,8 @@ TextInput{ clip: contentWidth > width || underline.width > width property alias underlineColor : underline.color property alias underline: underline - cursorDelegate: Rectangle{ + cursorDelegate: Item{} + Rectangle{ color: Material.accentColor x: parent.cursorRectangle.x y: parent.cursorRectangle.y -- GitLab