summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-01-17 20:13:13 +0000
committersr55 <[email protected]>2016-01-17 20:13:13 +0000
commit67a51f506df537ec655bf8719943135de69909c4 (patch)
treee8efb25f16be63700d7f3f0c51321be20f4b11cd /win
parent69f4df1aad19226b0d980b5076810d873bca7498 (diff)
WinGui: Fix an issue reloading "None" anamorphic setting on presets during app startup.
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs b/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs
index 2f6afe626..971111685 100644
--- a/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs
+++ b/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs
@@ -90,8 +90,9 @@ namespace HandBrakeWPF.Services.Presets.Factories
case "strict":
preset.Task.Anamorphic = Anamorphic.Strict;
break;
+ case "none":
default:
- preset.Task.Anamorphic = Anamorphic.Loose;
+ preset.Task.Anamorphic = Anamorphic.None;
break;
}