diff options
author | sr55 <sr55.hb@outlook.com> | 2009-06-28 11:38:35 +0000 |
---|---|---|
committer | sr55 <sr55.hb@outlook.com> | 2009-06-28 11:38:35 +0000 |
commit | 09c0bef2eed5ce0079e8f8b6409bc8fb78e3c0fa (patch) | |
tree | 8c19143241a318c1d7bf30b6aa13a2f1c88a8e8c /win/C#/frmOptions.cs | |
parent | 2cb0e60451671090f0dfc419da79f42cbd0f87a6 (diff) |
WinGui:
- Attempt 2 at fixing culture issues. Thanks to zhango
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2638 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index 3c0a81f89..9aeeb000b 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -5,6 +5,7 @@ It may be used under the terms of the GNU General Public License. */
using System;
+using System.Globalization;
using System.Windows.Forms;
using Handbrake.Functions;
@@ -119,7 +120,8 @@ namespace Handbrake numeric_updateCheckDays.Value = Properties.Settings.Default.daysBetweenUpdateCheck;
// x264 step
- drop_x264step.SelectedItem = Properties.Settings.Default.x264cqstep.ToString();
+ CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US");
+ drop_x264step.SelectedItem = Properties.Settings.Default.x264cqstep.ToString(culture);
// Use Experimental dvdnav
if (Properties.Settings.Default.dvdnav)
|