diff options
author | sr55 <[email protected]> | 2007-10-26 21:38:04 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-10-26 21:38:04 +0000 |
commit | e44b0fa6cf44948a3f20446515fe4d930eed6f77 (patch) | |
tree | 0e74e4d502992dbd2ac1a180e9fae5b5e6f9da68 /win/C#/Properties | |
parent | 592c7665ccf092313449860dded33b85e1735bfc (diff) |
WinGui:
- Reversed the functionality of the show/hide presets button. By default presets always show now.
- Re-added file open / save options and removed presets open/save buttons. Was confusing users.
- Added the ability to modify items on the queue.
- All Presets Updated.
- Queue Threading changed in an attempt to avoid Windows loosing track of it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1039 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 8 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index 041e88149..7238dc836 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -73,7 +73,7 @@ namespace Handbrake.Properties { [global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
+ [global::System.Configuration.DefaultSettingValueAttribute("Checked")]
public string defaultSettings {
get {
return ((string)(this["defaultSettings"]));
@@ -589,12 +589,12 @@ namespace Handbrake.Properties { [global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
- public string showPresets {
+ public string hidePresets {
get {
- return ((string)(this["showPresets"]));
+ return ((string)(this["hidePresets"]));
}
set {
- this["showPresets"] = value;
+ this["hidePresets"] = value;
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index a92bc7c73..5063e1101 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -15,7 +15,7 @@ <Value Profile="(Default)">Automatic</Value>
</Setting>
<Setting Name="defaultSettings" Type="System.String" Scope="User">
- <Value Profile="(Default)" />
+ <Value Profile="(Default)">Checked</Value>
</Setting>
<Setting Name="updateStatus" Type="System.String" Scope="User">
<Value Profile="(Default)">Checked</Value>
@@ -143,7 +143,7 @@ <Setting Name="BuiltInPresets" Type="System.Collections.Specialized.StringCollection" Scope="User">
<Value Profile="(Default)" />
</Setting>
- <Setting Name="showPresets" Type="System.String" Scope="User">
+ <Setting Name="hidePresets" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="selectedPreset" Type="System.String" Scope="User">
|