From a220ce2636562cf3fb6b3a319dc2bd746e5ccea5 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Thu, 12 Jan 2017 17:23:11 +0100 Subject: [PATCH] git: switch clean picks --- extensions/git/src/commands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index 9e52781bbb7..cf84bc365a4 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -271,7 +271,7 @@ export class CommandCenter { const message = `Are you sure you want to clean changes in ${basename}?`; const yes = 'Yes'; const no = 'No, keep them'; - const pick = await window.showQuickPick([no, yes], { placeHolder: message }); + const pick = await window.showQuickPick([yes, no], { placeHolder: message }); if (pick !== yes) { return; @@ -286,7 +286,7 @@ export class CommandCenter { const message = `Are you sure you want to clean all changes?`; const yes = 'Yes'; const no = 'No, keep them'; - const pick = await window.showQuickPick([no, yes], { placeHolder: message }); + const pick = await window.showQuickPick([yes, no], { placeHolder: message }); if (pick !== yes) { return;