Index: sources/gui/qml/pages/UserConfirmation.qml =================================================================== diff -u -rbba70435ebe0bbbc9bf5b4282f7d0906a8b49b1a -rc73feffa73c7fe073a7a7581144f5806dfc91beb --- sources/gui/qml/pages/UserConfirmation.qml (.../UserConfirmation.qml) (revision bba70435ebe0bbbc9bf5b4282f7d0906a8b49b1a) +++ sources/gui/qml/pages/UserConfirmation.qml (.../UserConfirmation.qml) (revision c73feffa73c7fe073a7a7581144f5806dfc91beb) @@ -58,7 +58,7 @@ PasswordEntry { id: _passwordCurrent label.text : ! passwordChangeMode ? "" : qsTr("Current") - label.width : ! passwordChangeMode ? 0 : label.width + label.width : ! passwordChangeMode ? 0 : labelWidth nextInput : _passwordUpdated anchors { top : parent.top @@ -87,12 +87,13 @@ } } component PasswordEntry : Item { - property alias textInput: _passwordEntry.textInput - property alias nextInput: _passwordEntry.nextInput - property alias label : _passwordEntry.label + property alias textInput : _passwordEntry.textInput + property alias nextInput : _passwordEntry.nextInput + property alias label : _passwordEntry.label + property int labelWidth : 150 height : 70 - label.width : 150 + label.width : labelWidth TextEntry { id: _passwordEntry clip : true