From 31f7fbe8dd16aa524a8e3675060423127956a3e9 Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 25 Aug 2009 16:16:00 +0000 Subject: WinGui: - Fix several issues with Picture Settings panel related to aspect ration and resolution calculation. - Fix issue where file extension could be mp4 when chapters is enabled. Problem in the autoname function. - Fix a regex error in the appcast reader and make it more robust to errors. - Clear up changelog git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2776 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Parsing/Title.cs | 2 -- 1 file changed, 2 deletions(-) (limited to 'win/C#/Parsing') diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs index deee24ad0..9c44330f1 100644 --- a/win/C#/Parsing/Title.cs +++ b/win/C#/Parsing/Title.cs @@ -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"); //size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps - - if (m.Success) { thisTitle.m_resolution = new Size(int.Parse(m.Groups[1].Value), int.Parse(m.Groups[2].Value)); -- cgit v1.2.3