From 42a5230b65561429c7b82a51d9fd1d4940b802a2 Mon Sep 17 00:00:00 2001 From: Jonah Iden Date: Fri, 6 Jan 2023 10:06:02 +0000 Subject: [PATCH] focus out possible again for debug configuration workspace quick pick Signed-off-by: Jonah Iden --- packages/debug/src/browser/debug-configuration-manager.ts | 1 - packages/debug/src/browser/view/debug-configuration-select.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/debug/src/browser/debug-configuration-manager.ts b/packages/debug/src/browser/debug-configuration-manager.ts index c4996ba79318e..6de99496fb84f 100644 --- a/packages/debug/src/browser/debug-configuration-manager.ts +++ b/packages/debug/src/browser/debug-configuration-manager.ts @@ -388,7 +388,6 @@ export class DebugConfigurationManager { } const root = await this.quickPickService.show(items, { placeholder: nls.localize('theia/debug/addConfigurationPlaceholder', 'Select workspace root to add configuration to'), - ignoreFocusOut: true }); return root?.value; } diff --git a/packages/debug/src/browser/view/debug-configuration-select.tsx b/packages/debug/src/browser/view/debug-configuration-select.tsx index 091ef1b3b31e4..cfbb6a45e1c03 100644 --- a/packages/debug/src/browser/view/debug-configuration-select.tsx +++ b/packages/debug/src/browser/view/debug-configuration-select.tsx @@ -103,7 +103,7 @@ export class DebugConfigurationSelect extends React.Component this.manager.addConfiguration()); } else if (value.startsWith(DebugConfigurationSelect.PICK)) { const providerType = this.parsePickValue(value); this.selectDynamicConfigFromQuickPick(providerType);