Skip to content

Commit 7433f3a

Browse files
committed
Merge branch 'show_modal' of https://github.com/edgardmessias/svn-scm into edgardmessias-show_modal
2 parents b2cbb86 + f79e0a7 commit 7433f3a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/commands.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,7 @@ export class SvnCommands implements IDisposable {
708708
const yes = "Yes I'm sure";
709709
const answer = await window.showWarningMessage(
710710
"Are you sure? This will wipe all local changes.",
711+
{ modal: true },
711712
yes
712713
);
713714

@@ -841,6 +842,7 @@ export class SvnCommands implements IDisposable {
841842
let keepLocal: boolean;
842843
const answer = await window.showWarningMessage(
843844
"Would you like to keep a local copy of the files?.",
845+
{ modal: true },
844846
"Yes",
845847
"No"
846848
);
@@ -949,6 +951,7 @@ export class SvnCommands implements IDisposable {
949951
const basename = path.basename(uri.fsPath);
950952
const pick = await window.showWarningMessage(
951953
`Mark the conflict as resolved for "${basename}"?`,
954+
{ modal: true },
952955
"Yes",
953956
"No"
954957
);

0 commit comments

Comments
 (0)