diff options
author | sr55 <[email protected]> | 2012-02-29 21:54:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-02-29 21:54:12 +0000 |
commit | 5bb4078641106578dd0a8e1eab6e1cfbc814067e (patch) | |
tree | 76f0311161f65620aaa1a0ea174172f8189fc43d | |
parent | 98829bd4729167383cfbabd379e3b24f89d60040 (diff) |
WinGui: Use specified culture for samplerate.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4477 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/CS/Functions/QueryGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/Functions/QueryGenerator.cs b/win/CS/Functions/QueryGenerator.cs index b21304311..729cfe17e 100644 --- a/win/CS/Functions/QueryGenerator.cs +++ b/win/CS/Functions/QueryGenerator.cs @@ -493,7 +493,7 @@ namespace Handbrake.Functions : string.Format(",{0}", Converters.GetCliMixDown(audioTrack.MixDown));
// Audio Samplerates (-R)
- string rate = audioTrack.SampleRate == 0 ? "Auto" : audioTrack.SampleRate.ToString(CultureInfo.InvariantCulture); // Default to "Auto"
+ string rate = audioTrack.SampleRate == 0 ? "Auto" : audioTrack.SampleRate.ToString(Culture); // Default to "Auto"
samplerates += string.IsNullOrEmpty(samplerates) ? rate : string.Format(",{0}", rate);
// Audio Bitrates (-B)
|