Fix voicemailAddress field glitch
This commit is contained in:
parent
e15186e63b
commit
6a26363aa8
1 changed files with 2 additions and 1 deletions
|
|
@ -47,12 +47,12 @@ AbstractSettingsLayout {
|
||||||
Layout.leftMargin: 64 * DefaultStyle.dp
|
Layout.leftMargin: 64 * DefaultStyle.dp
|
||||||
Layout.topMargin: 20 * DefaultStyle.dp
|
Layout.topMargin: 20 * DefaultStyle.dp
|
||||||
DecoratedTextField {
|
DecoratedTextField {
|
||||||
Layout.fillWidth: true
|
|
||||||
propertyName: "mwiServerAddress"
|
propertyName: "mwiServerAddress"
|
||||||
propertyOwner: account.core
|
propertyOwner: account.core
|
||||||
title: qsTr("URI du serveur de messagerie vocale")
|
title: qsTr("URI du serveur de messagerie vocale")
|
||||||
isValid: function(text) { return UtilsCpp.isValidSIPAddress(text); }
|
isValid: function(text) { return UtilsCpp.isValidSIPAddress(text); }
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
DecoratedTextField {
|
DecoratedTextField {
|
||||||
propertyName: "voicemailAddress"
|
propertyName: "voicemailAddress"
|
||||||
|
|
@ -60,6 +60,7 @@ AbstractSettingsLayout {
|
||||||
title: qsTr("URI de messagerie vocale")
|
title: qsTr("URI de messagerie vocale")
|
||||||
isValid: function(text) { return UtilsCpp.isValidSIPAddress(text); }
|
isValid: function(text) { return UtilsCpp.isValidSIPAddress(text); }
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
Item {
|
Item {
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue