Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -r2230a5b1b891f47b64165164710aa680ddfc7040 -r7077e38c74db9cccb5496ffefcf8936c0916de76 --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 2230a5b1b891f47b64165164710aa680ddfc7040) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 7077e38c74db9cccb5496ffefcf8936c0916de76) @@ -23,7 +23,7 @@ Item { id: _root enum Constants { EntryWidth = 350 , - EntryHeight = 50 , + EntryHeight = 40 , InputWidth = 100 } @@ -35,7 +35,7 @@ signal enterPressed() - width : TextEntry.EntryWidth + width : _label.width + _input.width height : TextEntry.EntryHeight onEnterPressed : { @@ -47,6 +47,7 @@ } Text { id : _label + height : parent.height anchors.left : parent.left anchors.top : parent.top color : Colors.textMain @@ -80,5 +81,6 @@ width : _input.width anchors.top : _input.bottom anchors.left: _input.left + anchors.topMargin : -thickness // move it up to be in the container rect in case the TextEntry clip set true. } }