Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -raef40c25aa724a8fc249346de0cfc91bc63df8d4 --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision aef40c25aa724a8fc249346de0cfc91bc63df8d4) @@ -33,7 +33,7 @@ property alias validator : _input.validator property var nextInput : undefined property alias text : _input.text - property bool hasCarret : false + property bool hasCursor : true readonly property alias isValid : _input.acceptableInput @@ -53,7 +53,7 @@ function doFocus( vFocus ) { if ( vFocus ) { - if ( ! _root.hasCarret ) { + if ( ! _root.hasCursor ) { _input.selectAll() } _keyboard.setVisible(true) @@ -69,6 +69,7 @@ } TextInput { id : _input + enabled : hasCursor height : parent.height width : TextEntry.InputWidth text : "" @@ -86,6 +87,7 @@ } Line { id : _line + visible : hasCursor color : Colors.borderButtonHalfDarker width : _input.width anchors.top : _input.bottom @@ -94,7 +96,7 @@ } MouseArea { - visible : ! hasCarret + visible : ! hasCursor anchors.fill: parent propagateComposedEvents: true onClicked: {