diff options
author | sr55 <[email protected]> | 2009-11-13 23:07:41 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-11-13 23:07:41 +0000 |
commit | c70102d4a4c348085b2a55d24058535f38109917 (patch) | |
tree | 24248eeb4314fd43ba9a2657a2a9d43765903448 /win | |
parent | c5f57ad425252fb897cf57d7fd786f5b757fb0c3 (diff) |
WinGui:
- Fix a culture issue in query generator. DRC appeared as x,x rather than x.x
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2927 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index 3b34cd577..ca5262a15 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -351,8 +351,9 @@ namespace Handbrake.Functions firstLoop = true; audioItems = ""; // Reset for another pass.
// DRC (-D)
- foreach (String item in drcs)
+ foreach (var itm in drcs)
{
+ string item = itm.ToString(new CultureInfo("en-US"));
if (firstLoop)
{
audioItems = item; firstLoop = false;
|