diff options
author | sr55 <[email protected]> | 2009-08-29 21:08:50 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-08-29 21:08:50 +0000 |
commit | 70a9464be721381abbd87792abeffe5a57f5f33e (patch) | |
tree | d6b8d2eaf0e131b6786879dd990f117a5d25f52d /win/C#/Properties | |
parent | fab46b2a994d8d60980e5474ee8a7ede5e0742ca (diff) |
WinGui:
- Fix a nasty culture issue with the Video Quality slider. Should now work correctly for systems which represent floats as 1,25 instead of 1.25
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2791 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 4 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index c60c8da1b..86c2c76d0 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -302,9 +302,9 @@ namespace Handbrake.Properties { [global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0.25")]
- public string x264cqstep {
+ public double x264cqstep {
get {
- return ((string)(this["x264cqstep"]));
+ return ((double)(this["x264cqstep"]));
}
set {
this["x264cqstep"] = value;
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index 5c3d4d3b3..f88c3e3d7 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -71,7 +71,7 @@ <Setting Name="QueryEditorTab" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
- <Setting Name="x264cqstep" Type="System.String" Scope="User">
+ <Setting Name="x264cqstep" Type="System.Double" Scope="User">
<Value Profile="(Default)">0.25</Value>
</Setting>
<Setting Name="verboseLevel" Type="System.Int32" Scope="User">
|