diff options
author | sr55 <[email protected]> | 2019-11-15 19:20:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-11-15 22:31:53 +0000 |
commit | e1ddd2c01dd876601c0b8edb26cd3cb448f6df0a (patch) | |
tree | 26bc8879f54bfa3ac9f23f3a916181947546b0db /win/CS/HandBrakeWPF/ViewModels | |
parent | 0984e37ac9fb050db6687d6ff89ac881a2fafecf (diff) |
WinGui: Fix an issue with autoname file format not being stored correctly. Fixes #2422
(cherry picked from commit 6b456f00d3cb720e940959c6fc9963eacdec8bc3)
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs index bc8c241bd..0be6a26a7 100644 --- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -1614,7 +1614,7 @@ namespace HandBrakeWPF.ViewModels this.userSettingService.SetUserSetting(UserSettingConstants.AutoNaming, this.AutomaticallyNameFiles);
this.userSettingService.SetUserSetting(UserSettingConstants.AutoNameFormat, this.AutonameFormat);
this.userSettingService.SetUserSetting(UserSettingConstants.AutoNamePath, this.AutoNameDefaultPath);
- this.userSettingService.SetUserSetting(UserSettingConstants.UseM4v, this.SelectedMp4Extension);
+ this.userSettingService.SetUserSetting(UserSettingConstants.UseM4v, (int)this.SelectedMp4Extension);
this.userSettingService.SetUserSetting(UserSettingConstants.AutoNameRemoveUnderscore, this.RemoveUnderscores);
this.userSettingService.SetUserSetting(UserSettingConstants.AutoNameTitleCase, this.ChangeToTitleCase);
this.userSettingService.SetUserSetting(UserSettingConstants.RemovePunctuation, this.RemovePunctuation);
|