summaryrefslogtreecommitdiffstats
path: root/win/C#
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-08-28 21:48:47 +0000
committersr55 <[email protected]>2009-08-28 21:48:47 +0000
commitd4e94dcd9821cbce69718b7623a01b415172fa78 (patch)
treed2636fd83d1c99e1dac685bb3f2ece5c7359a423 /win/C#
parentc2863b8a7b35433f9bbd7b16652f79d42b45ab57 (diff)
WinGui:
- Fixed issue with filters tab. "None" is no longer an option. Query parser shouldn't try setting it. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2786 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#')
-rw-r--r--win/C#/Functions/QueryParser.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs
index 3d294405e..87fdfc02d 100644
--- a/win/C#/Functions/QueryParser.cs
+++ b/win/C#/Functions/QueryParser.cs
@@ -261,7 +261,7 @@ namespace Handbrake.Functions
thisQuery.Decomb = decombValue.ToString().Replace("--decomb=", "").Replace("\"", "");
}
- thisQuery.DeInterlace = "None";
+ thisQuery.DeInterlace = "Off";
if (deinterlace.Success)
{
thisQuery.DeInterlace = deinterlace.ToString().Replace("--deinterlace=", "").Replace("\"", "");
@@ -269,7 +269,7 @@ namespace Handbrake.Functions
thisQuery.DeInterlace = thisQuery.DeInterlace.Replace("slowest", "Slowest");
}
- thisQuery.DeNoise = "None";
+ thisQuery.DeNoise = "Off";
if (denoise.Success)
{
thisQuery.DeNoise = denoise.ToString().Replace("--denoise=", "").Replace("\"", "");