Fix voicemailAddress field glitch

This commit is contained in:
Christophe Deschamps 2024-11-08 06:54:37 +01:00
parent e15186e63b
commit 6a26363aa8

View file

@ -47,12 +47,12 @@ AbstractSettingsLayout {
Layout.leftMargin: 64 * DefaultStyle.dp
Layout.topMargin: 20 * DefaultStyle.dp
DecoratedTextField {
Layout.fillWidth: true
propertyName: "mwiServerAddress"
propertyOwner: account.core
title: qsTr("URI du serveur de messagerie vocale")
isValid: function(text) { return UtilsCpp.isValidSIPAddress(text); }
toValidate: true
Layout.fillWidth: true
}
DecoratedTextField {
propertyName: "voicemailAddress"
@ -60,6 +60,7 @@ AbstractSettingsLayout {
title: qsTr("URI de messagerie vocale")
isValid: function(text) { return UtilsCpp.isValidSIPAddress(text); }
toValidate: true
Layout.fillWidth: true
}
Item {
Layout.fillHeight: true