diff options
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)
|