diff options
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 9f7ad8cb3..2fa5425a5 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1531,8 +1531,6 @@ namespace HandBrakeWPF.ViewModels if (dialogResult.HasValue && dialogResult.Value)
{
- ShowSourceSelection = false;
-
this.StartScan(dialog.SelectedPath, this.TitleSpecificScan);
}
}
@@ -1547,8 +1545,6 @@ namespace HandBrakeWPF.ViewModels if (dialogResult.HasValue && dialogResult.Value)
{
- ShowSourceSelection = false;
-
this.StartScan(dialog.FileName, this.TitleSpecificScan);
}
}
@@ -2038,6 +2034,7 @@ namespace HandBrakeWPF.ViewModels {
if (!string.IsNullOrEmpty(filename))
{
+ ShowSourceSelection = false;
this.scanService.Scan(filename, title, null, HBConfigurationFactory.Create());
}
}
|