Skip to content

Commit

Permalink
fixes #71355
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Apr 1, 2019
1 parent 3ba44a0 commit f077253
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions extensions/git/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,7 @@ export class CommandCenter {
const quickpick = window.createQuickPick();
quickpick.items = picks;
quickpick.placeholder = placeHolder;
quickpick.ignoreFocusOut = true;
quickpick.show();

const choice = await new Promise<QuickPickItem | undefined>(c => quickpick.onDidAccept(() => c(quickpick.activeItems[0])));
Expand Down

0 comments on commit f077253

Please sign in to comment.