sqlproj - keep new object input box open when user navigates UI

This commit is contained in:
Drew Skwiers-Koballa
2021-03-15 13:00:01 -07:00
committed by GitHub
parent 0209b55ea2
commit 9beb7804e6

View File

@@ -721,6 +721,7 @@ export class ProjectsController {
const itemObjectName = await vscode.window.showInputBox({
prompt: constants.newObjectNamePrompt(itemType.friendlyName),
value: `${suggestedName}${counter}`,
ignoreFocusOut: true,
});
return itemObjectName;