mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 11:08:55 +00:00
chore: add object names to UserAgreementPopup.qml
This commit is contained in:
parent
783a755230
commit
d73c4c5a3a
@ -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("I’ve 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("I’m ready to use Status Desktop Beta")
|
||||
@ -95,6 +98,7 @@ StatusModal {
|
||||
text: qsTr("I’m ready to use Status Desktop Beta")
|
||||
enabled: agreeToUse.checked && readyToUse.checked
|
||||
onClicked: root.close()
|
||||
objectName: "desktopBetaStatusButton"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user