diff options
author | sr55 <[email protected]> | 2009-12-04 16:27:02 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-12-04 16:27:02 +0000 |
commit | 986cc6b7c95aea65e5f828b3d1fd6acbd817be43 (patch) | |
tree | be22c3c1189b4419291451c73b8192a457160a30 /win/C#/Properties | |
parent | 7fcdab64f2b7c161b19b8cd0250cfbb799729759 (diff) |
WinGui:
- Implement new option: "--previews" allowing a range of 10 to 30 to be selected on the preview window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3001 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 12 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index af174ab57..f97bef882 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -476,5 +476,17 @@ namespace Handbrake.Properties { this["cliLastModified"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("10")]
+ public int previewScanCount {
+ get {
+ return ((int)(this["previewScanCount"]));
+ }
+ set {
+ this["previewScanCount"] = value;
+ }
+ }
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index f1c02639e..264ad812b 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -116,5 +116,8 @@ <Setting Name="cliLastModified" Type="System.DateTime" Scope="User">
<Value Profile="(Default)" />
</Setting>
+ <Setting Name="previewScanCount" Type="System.Int32" Scope="User">
+ <Value Profile="(Default)">10</Value>
+ </Setting>
</Settings>
</SettingsFile>
\ No newline at end of file |