diff options
author | sr55 <[email protected]> | 2009-04-10 14:27:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-04-10 14:27:27 +0000 |
commit | 50ce0a348a12a281f6907fe65189e2b34589a420 (patch) | |
tree | 4af714262ec51795e95522bdb815e9e983fa78b7 /win/C#/Properties | |
parent | 0f6bc3e33963fe3b89ddeb60904cd676df588ac5 (diff) |
WinGui:
- Added option to set verbosity level. default 1
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2317 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 543397699..de9c10654 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -322,5 +322,17 @@ namespace Handbrake.Properties { this["x264cqstep"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("1")]
+ public int verboseLevel {
+ get {
+ return ((int)(this["verboseLevel"]));
+ }
+ set {
+ this["verboseLevel"] = value;
+ }
+ }
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index 4af4a7454..a74478c2b 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -77,5 +77,8 @@ <Setting Name="x264cqstep" Type="System.String" Scope="User">
<Value Profile="(Default)">0.25</Value>
</Setting>
+ <Setting Name="verboseLevel" Type="System.Int32" Scope="User">
+ <Value Profile="(Default)">1</Value>
+ </Setting>
</Settings>
</SettingsFile>
\ No newline at end of file |