You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
The text was updated successfully, but these errors were encountered:
(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 usewindow.showQuickPick()
, so the property is set via theignoreFocusOut
option. All related quick picks need to have that property set totrue
. This may be manageable viaApplicationShell.showQuickPick()
(in src/client/common/application/applicationShell.ts).The text was updated successfully, but these errors were encountered: