Fix field length wisth in CardDav settings page
This commit is contained in:
parent
69f6683a47
commit
c4721dc84c
1 changed files with 5 additions and 0 deletions
|
|
@ -81,6 +81,7 @@ AbstractSettingsLayout {
|
||||||
title: qsTr("Nom d’affichage")
|
title: qsTr("Nom d’affichage")
|
||||||
canBeEmpty: false
|
canBeEmpty: false
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
DecoratedTextField {
|
DecoratedTextField {
|
||||||
propertyName: "uri"
|
propertyName: "uri"
|
||||||
|
|
@ -88,12 +89,14 @@ AbstractSettingsLayout {
|
||||||
title: qsTr("URL du serveur")
|
title: qsTr("URL du serveur")
|
||||||
canBeEmpty: false
|
canBeEmpty: false
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
DecoratedTextField {
|
DecoratedTextField {
|
||||||
propertyName: "username"
|
propertyName: "username"
|
||||||
propertyOwner: carddavGui.core
|
propertyOwner: carddavGui.core
|
||||||
title: qsTr("Nom d’utilisateur")
|
title: qsTr("Nom d’utilisateur")
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
DecoratedTextField {
|
DecoratedTextField {
|
||||||
propertyName: "password"
|
propertyName: "password"
|
||||||
|
|
@ -101,12 +104,14 @@ AbstractSettingsLayout {
|
||||||
propertyOwner: carddavGui.core
|
propertyOwner: carddavGui.core
|
||||||
title: qsTr("Mot de passe")
|
title: qsTr("Mot de passe")
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
DecoratedTextField {
|
DecoratedTextField {
|
||||||
propertyName: "realm"
|
propertyName: "realm"
|
||||||
propertyOwner: carddavGui.core
|
propertyOwner: carddavGui.core
|
||||||
title: qsTr("Domaine d’authentification")
|
title: qsTr("Domaine d’authentification")
|
||||||
toValidate: true
|
toValidate: true
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
SwitchSetting {
|
SwitchSetting {
|
||||||
titleText: qsTr("Stocker ici les contacts nouvellement crées")
|
titleText: qsTr("Stocker ici les contacts nouvellement crées")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue