From fc548be2c14bb2a38ea82d2444594b88c13e4cf8 Mon Sep 17 00:00:00 2001 From: Cory Rivera Date: Tue, 12 May 2020 13:02:35 -0700 Subject: [PATCH] Uncheck unselected radio buttons in Configure Python wizard. (#10344) --- .../notebook/src/dialog/configurePython/configurePathPage.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/notebook/src/dialog/configurePython/configurePathPage.ts b/extensions/notebook/src/dialog/configurePython/configurePathPage.ts index e57a2afa44..02a27ddc9c 100644 --- a/extensions/notebook/src/dialog/configurePython/configurePathPage.ts +++ b/extensions/notebook/src/dialog/configurePython/configurePathPage.ts @@ -134,6 +134,7 @@ export class ConfigurePathPage extends BasePage { checked: !useExistingPython }).component(); this.newInstallButton.onDidClick(() => { + this.existingInstallButton.checked = false; this.updatePythonPathsDropdown(false) .catch(err => { this.instance.showErrorMessage(utils.getErrorMessage(err)); @@ -147,6 +148,7 @@ export class ConfigurePathPage extends BasePage { checked: useExistingPython }).component(); this.existingInstallButton.onDidClick(() => { + this.newInstallButton.checked = false; this.updatePythonPathsDropdown(true) .catch(err => { this.instance.showErrorMessage(utils.getErrorMessage(err));