diff options
author | sr55 <sr55.hb@outlook.com> | 2009-10-31 16:36:20 +0000 |
---|---|---|
committer | sr55 <sr55.hb@outlook.com> | 2009-10-31 16:36:20 +0000 |
commit | c670e56a5ae06d7537e08b599a189f5771af1155 (patch) | |
tree | 7d0f2003f7810938608f553aae9ba413e10cf374 /win/C#/Parsing | |
parent | d979c872e20a8280068ca78005ec982a3eb513f9 (diff) |
WinGui:
- Change enable libdvdnav option to disable libdvdnav option. (Since the CLI now uses libdvdnav by default)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2906 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 9c44330f1..1a98a58ed 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)
+ if (!Properties.Settings.Default.noDvdNav)
{
// Get the Angles for the title.
m = Regex.Match(output.ReadLine(), @" \+ angle\(s\) ([0-9,])");
|