OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Parsing / Title.cs
index e79dd72..1a98a58 100644 (file)
@@ -146,7 +146,7 @@ namespace Handbrake.Parsing
 \r
             output.ReadLine();\r
 \r
-            if (Properties.Settings.Default.dvdnav == "Checked")\r
+            if (!Properties.Settings.Default.noDvdNav)\r
             {\r
                 // Get the Angles for the title.\r
                 m = Regex.Match(output.ReadLine(), @"  \+ angle\(s\) ([0-9,])");\r
@@ -175,8 +175,6 @@ namespace Handbrake.Parsing
                             @"^  \+ size: ([0-9]*)x([0-9]*), pixel aspect: ([0-9]*)/([0-9]*), display aspect: ([0-9]*\.[0-9]*), ([0-9]*\.[0-9]*) fps");\r
             //size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps\r
 \r
-\r
-\r
             if (m.Success)\r
             {\r
                 thisTitle.m_resolution = new Size(int.Parse(m.Groups[1].Value), int.Parse(m.Groups[2].Value));\r