Skip to content

Commit

Permalink
Revert "fixes #71355"
Browse files Browse the repository at this point in the history
This reverts commit f077253.

Fixes #82797
  • Loading branch information
joaomoreno committed Oct 18, 2019
1 parent bd170ec commit 1cd6bd6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion extensions/git/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,6 @@ 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 1cd6bd6

Please sign in to comment.