diff options
author | sr55 <[email protected]> | 2009-06-11 18:29:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-11 18:29:19 +0000 |
commit | fd0c0c87d59dd8b3b49488af57cfbd8fcb7fc187 (patch) | |
tree | 9303b507e62b424200fba23f9db534b6656db7f6 /win/C#/Controls/PictureSettings.cs | |
parent | 3cbfd73aa1cce9a64c198457c457a8b1068835b5 (diff) |
WinGui:
- Few more possible culture issues.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2516 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls/PictureSettings.cs')
-rw-r--r-- | win/C#/Controls/PictureSettings.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Controls/PictureSettings.cs b/win/C#/Controls/PictureSettings.cs index 54a80eefd..a597de9eb 100644 --- a/win/C#/Controls/PictureSettings.cs +++ b/win/C#/Controls/PictureSettings.cs @@ -36,7 +36,7 @@ namespace Handbrake.Controls storageAspect = 0;
selectedTitle = st;
// Set the Aspect Ratio
- lbl_Aspect.Text = selectedTitle.AspectRatio.ToString();
+ lbl_Aspect.Text = selectedTitle.AspectRatio.ToString(Culture);
lbl_src_res.Text = selectedTitle.Resolution.Width + " x " + selectedTitle.Resolution.Height;
// Set the Recommended Cropping values
|