Skip to content

Commit a151950

Browse files
committed
Revert "Disable option to open new project in current window (wpilibsuite#560)" (wpilibsuite#603)
This works again in VS Code 1.81.1 This reverts commit 00727ad.
1 parent 818a441 commit a151950

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vscode-wpilib/src/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export async function promptForProjectOpen(toFolder: vscode.Uri): Promise<boolea
136136
const openSelection = await vscode.window.showInformationMessage(i18n('message',
137137
'Project successfully created. Would you like to open the folder?'), {
138138
modal: true,
139-
}, /*i18n('ui', 'Yes (Current Window)'), */ i18n('ui', 'Yes (New Window)'), i18n('ui', 'No'));
139+
}, i18n('ui', 'Yes (Current Window)'), i18n('ui', 'Yes (New Window)'), i18n('ui', 'No'));
140140
if (openSelection === undefined) {
141141
return true;
142142
} else if (openSelection === i18n('ui', 'Yes (Current Window)')) {

0 commit comments

Comments
 (0)