diff options
author | sr55 <[email protected]> | 2018-11-04 20:14:30 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-11-04 20:14:30 +0000 |
commit | 0971a9aaca0b2ff8fa64f64a1f60830b2f47940a (patch) | |
tree | 86349bd7af39e5e6b05fe8ba5fa390d4a16a1601 /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | e566794de8b26fc97b1d4316eb6170a482d022c1 (diff) |
WinGui: Allow the UI to silently attempt to auto-create folders when adding to the queue. Subsequent deletion of said folder will still prompt a queue failure as this is an abnormal situation that would be best reviewed by the user #1654
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 9cfe574ca..45904cb0e 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1514,7 +1514,7 @@ namespace HandBrakeWPF.ViewModels }
}
- if (!DirectoryUtilities.IsWritable(Path.GetDirectoryName(this.CurrentTask.Destination), true, this.errorService))
+ if (!DirectoryUtilities.IsWritable(Path.GetDirectoryName(this.CurrentTask.Destination), false, this.errorService))
{
this.errorService.ShowMessageBox(Resources.Main_NoPermissionsOrMissingDirectory, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error);
return false;
|