diff options
author | sr55 <[email protected]> | 2009-06-22 20:24:17 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-22 20:24:17 +0000 |
commit | 5f1d29efe1d78d2019899619440250e5e760d614 (patch) | |
tree | cd12f6d5c630d7891290c5ffb242db1b760e4b67 /win/C#/Parsing | |
parent | 0c52900e6f5ed363b15313f6f0735b1fd51e18f8 (diff) |
WinGui:
- Stop using Strings for CheckBoxes in IF statements. They can return a boolean values.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2599 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing')
-rw-r--r-- | win/C#/Parsing/Title.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs index e79dd72bd..deee24ad0 100644 --- a/win/C#/Parsing/Title.cs +++ b/win/C#/Parsing/Title.cs @@ -146,7 +146,7 @@ namespace Handbrake.Parsing output.ReadLine();
- if (Properties.Settings.Default.dvdnav == "Checked")
+ if (Properties.Settings.Default.dvdnav)
{
// Get the Angles for the title.
m = Regex.Match(output.ReadLine(), @" \+ angle\(s\) ([0-9,])");
|