Skip to content

Commit a5c34f1

Browse files
authored
Merge pull request #2446 from WardenGnaw/dev/waan/compoundIssue
Set QuickPick windows to not lose focus
2 parents 1fccb5e + a0a5766 commit a5c34f1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/features/processPicker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export class AttachPicker {
2727
return this.attachItemsProvider.getAttachItems()
2828
.then(processEntries => {
2929
let attachPickOptions: vscode.QuickPickOptions = {
30+
ignoreFocusOut: true,
3031
matchOnDescription: true,
3132
matchOnDetail: true,
3233
placeHolder: "Select the process to attach to"
@@ -223,6 +224,7 @@ export class RemoteAttachPicker {
223224
.then(async pipeCmd => RemoteAttachPicker.getRemoteOSAndProcesses(pipeCmd, pipeTransport.pipeCwd, platformInfo))
224225
.then(processes => {
225226
let attachPickOptions: vscode.QuickPickOptions = {
227+
ignoreFocusOut: true,
226228
matchOnDescription: true,
227229
matchOnDetail: true,
228230
placeHolder: "Select the process to attach to"

0 commit comments

Comments
 (0)