Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -re5a802bc26647388cfea4f1d46ae22570ec2dba3 -rd71990c79c75c613d781890c6f77505d409d6c64 --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision e5a802bc26647388cfea4f1d46ae22570ec2dba3) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision d71990c79c75c613d781890c6f77505d409d6c64) @@ -26,6 +26,9 @@ property alias label : _label property alias labelText : _label.text property alias validator : _input.validator + property bool enableInput : true + property color lineColor : Colors.textEntry + property bool lineVisible : true signal enterPressed() width: Variables.textInputWidth @@ -44,7 +47,9 @@ anchors { left: _label.right } - + enabled: _root.enableInput + autoScroll: false + clip: true color: Colors.textMain text: "" font.pixelSize: Fonts.fontPixelTextRectExtra @@ -68,7 +73,8 @@ } Line { id: _line - color: Colors.textEntry + color: _root.lineColor + visible: _root.lineVisible width: Variables.textInputLineWidth anchors { top: _input.bottom