chore: add object names to UserAgreementPopup.qml

This commit is contained in:
Anastasiya Semenkevich 2023-11-15 19:16:09 +03:00 committed by Anastasiya
parent 783a755230
commit d73c4c5a3a
1 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,7 @@ StatusModal {
id: root
width: 640
title: qsTr("Welcome to Status Desktop Beta")
objectName: "desktopBetaStatusModal"
hasCloseButton: false
verticalPadding: 20
@ -76,6 +77,7 @@ StatusModal {
StatusCheckBox {
id: agreeToUse
objectName: "desktopBetaAgreeCheckBox"
Layout.fillWidth: true
Layout.topMargin: -8 //reduced margin by design
text: qsTr("Ive read the above and understand that Status Desktop is Beta software")
@ -83,6 +85,7 @@ StatusModal {
StatusCheckBox {
id: readyToUse
objectName: "desktopBetaReadyCheckBox"
Layout.fillWidth: true
Layout.topMargin: -16 //reduced margin by design
text: qsTr("Im ready to use Status Desktop Beta")
@ -95,6 +98,7 @@ StatusModal {
text: qsTr("Im ready to use Status Desktop Beta")
enabled: agreeToUse.checked && readyToUse.checked
onClicked: root.close()
objectName: "desktopBetaStatusButton"
}
]
}