summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-01-09 19:07:21 +0000
committersr55 <[email protected]>2017-01-09 19:07:29 +0000
commit6dca3affae8d899f34b66a7a91729593cf0e2626 (patch)
treec8509e0f64117695161ecf81075af41b376b1099 /win
parent008b1f47941e6479e5db106653232fb886196238 (diff)
WinGui: Fix a stack overflow exception in Options screen that was causing a settings reset.
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
index 873e2b513..7322e3060 100644
--- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
@@ -1194,7 +1194,6 @@ namespace HandBrakeWPF.ViewModels
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ResetWhenDoneAction))
{
this.WhenDone = "Do nothing";
- this.userSettingService.SetUserSetting(UserSettingConstants.WhenCompleteAction, "Do nothing");
}
this.SendFileAfterEncode = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.SendFile);