diff options
author | sr55 <[email protected]> | 2012-12-08 12:50:37 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-12-08 12:50:37 +0000 |
commit | feb7340f66dfadfa10f67e95e3298aba123024ef (patch) | |
tree | 1674eb9dbea5361b90e6ceec7d91c4b641b60b1e /win/CS/HandBrake.ApplicationServices/Utilities | |
parent | 36c4b34ba05bd1992f0f8757c1b804ca6f2ca4c8 (diff) |
WinGui: Fix a number of potential culture issues with doubles. (Advanced Panel, Query Handling and Picture settings)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5091 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Utilities')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs b/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs index c13511580..f0b5d65e3 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs @@ -322,7 +322,7 @@ namespace HandBrake.ApplicationServices.Utilities if (videoFramerate.Success)
{
double fps;
- double.TryParse(videoFramerate.Groups[1].ToString(), out fps);
+ double.TryParse(videoFramerate.Groups[1].ToString(), NumberStyles.Any, CultureInfo.InvariantCulture, out fps);
parsed.Framerate = fps;
}
|