diff --git a/client/ui/qml/Pages2/PageSetupWizardEasy.qml b/client/ui/qml/Pages2/PageSetupWizardEasy.qml index ca5861bc..72178c87 100644 --- a/client/ui/qml/Pages2/PageSetupWizardEasy.qml +++ b/client/ui/qml/Pages2/PageSetupWizardEasy.qml @@ -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 {