File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments