(task from #1983)
If you change focus out of (tab away from) VS Code, the prompt stays visible.
This is controlled by the QuickPick.ignoreFocusOut property. We only use window.showQuickPick(), so the property is set via the ignoreFocusOut option. All related quick picks need to have that property set to true. This may be manageable via ApplicationShell.showQuickPick() (in src/client/common/application/applicationShell.ts).
(task from #1983)
If you change focus out of (tab away from) VS Code, the prompt stays visible.
This is controlled by the
QuickPick.ignoreFocusOutproperty. We only usewindow.showQuickPick(), so the property is set via theignoreFocusOutoption. All related quick picks need to have that property set totrue. This may be manageable viaApplicationShell.showQuickPick()(in src/client/common/application/applicationShell.ts).