fix selection on EasyWizardSetupPage

This commit is contained in:
Cyril Anisimov 2025-06-13 00:45:53 +02:00
parent ad32b68d84
commit b1627887eb

View file

@ -103,6 +103,7 @@ PageType {
ButtonGroup.group: buttonGroup
onClicked: function() {
checked = true
isEasySetup = true
var defaultContainerProto = ContainerProps.defaultProtocol(dockerContainer)
@ -110,6 +111,9 @@ PageType {
listView.containerDefaultPort = ProtocolProps.getPortForInstall(defaultContainerProto)
listView.containerDefaultTransportProto = ProtocolProps.defaultTransportProto(defaultContainerProto)
}
Keys.onReturnPressed: this.clicked()
Keys.onEnterPressed: this.clicked()
}
}
@ -136,7 +140,11 @@ PageType {
onClicked: function() {
isEasySetup = false
checked = true
}
Keys.onReturnPressed: this.clicked()
Keys.onEnterPressed: this.clicked()
}
BasicButtonType {