diff options
author | sr55 <[email protected]> | 2013-05-24 18:12:40 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-05-24 18:12:40 +0000 |
commit | 4584b3b633516e722b0791d62aea253ef5c7a3de (patch) | |
tree | 7ad4ce9aa332a37462d9052445d79c5091cd1986 /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | 442e1ec4130c9684c4c94ebdf3d5482c071aed02 (diff) |
WinGui: Add a warning about user presets not being updated until such time that we handle this scenario better.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5508 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index fd9612fef..4063c1e68 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -905,7 +905,8 @@ namespace HandBrakeWPF.ViewModels // Setup the presets.
if (this.presetService.CheckIfPresetsAreOutOfDate())
if (!this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PresetNotification))
- this.errorService.ShowMessageBox("HandBrake has determined your built-in presets are out of date... These presets will now be updated.",
+ this.errorService.ShowMessageBox("HandBrake has determined your built-in presets are out of date... These presets will now be updated." + Environment.NewLine +
+ "Your custom presets have not been updated so you may have to re-create these by deleting and re-adding them.",
"Preset Update", MessageBoxButton.OK, MessageBoxImage.Information);
// Queue Recovery
|