Skip to content

Commit 197bfd9

Browse files
authored
Git - Use modal dialog after cloning a repository (microsoft#162306)
Use modal dialog after cloning a repository
1 parent f88fb91 commit 197bfd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/git/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ export class CommandCenter {
599599
choices.push(addToWorkspace);
600600
}
601601

602-
const result = await window.showInformationMessage(message, ...choices);
602+
const result = await window.showInformationMessage(message, { modal: true }, ...choices);
603603

604604
action = result === open ? PostCloneAction.Open
605605
: result === openNewWindow ? PostCloneAction.OpenNewWindow

0 commit comments

Comments
 (0)