Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -r632f698e13711e6544a28c7a72d276d2bf5f000e -r96b249bba7de97afe17cfbdaf02250dbded38f4b --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 632f698e13711e6544a28c7a72d276d2bf5f000e) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 96b249bba7de97afe17cfbdaf02250dbded38f4b) @@ -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 property alias labelVisible : _label.visible signal enterPressed() @@ -45,7 +48,9 @@ anchors { left: _label.right } - + enabled: _root.enableInput + autoScroll: false + clip: true color: Colors.textMain text: "" font.pixelSize: Fonts.fontPixelTextRectExtra @@ -69,7 +74,8 @@ } Line { id: _line - color: Colors.textEntry + color: _root.lineColor + visible: _root.lineVisible width: Variables.textInputLineWidth anchors { top: _input.bottom