diff options
author | sr55 <[email protected]> | 2009-07-15 11:03:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-15 11:03:54 +0000 |
commit | 742df70f4ae59aba07e2b094c2f9f4a9efc01a7c (patch) | |
tree | 64df63f584693271f82b4370086ff206efe7bd5d /win/C#/Properties | |
parent | f5108ef3ae828197e68cb2f03f37ef90679f02c5 (diff) |
WinGui:
- The options panel (frmOptions) is now completely wrapped in TableLayoutPanels.
- The rest of the GUI has been changed to Tahoma, 8pt font.
- QueueHandler and it's related classes have been refactored and documented.
- new option has been added that prompts the user before encoding when the query under the "Query Editor" tab does not match the GUI settings. It can be disabled in the options window.
- A bug where "last_encode_log.txt" failed to be read has been fixed that was caused by exiting the CLI window shortly after starting the encode.
Thansk to darkassassin
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2693 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 14 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 3 |
2 files changed, 16 insertions, 1 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index ea1296f1c..d74054426 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
-// Runtime Version:2.0.50727.3082
+// Runtime Version:2.0.50727.4918
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -405,5 +405,17 @@ namespace Handbrake.Properties { this["useM4v"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool PromptOnUnmatchingQueries {
+ get {
+ return ((bool)(this["PromptOnUnmatchingQueries"]));
+ }
+ set {
+ this["PromptOnUnmatchingQueries"] = value;
+ }
+ }
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index feb65c89a..5f43ded6e 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -98,5 +98,8 @@ <Setting Name="useM4v" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
+ <Setting Name="PromptOnUnmatchingQueries" Type="System.Boolean" Scope="User">
+ <Value Profile="(Default)">True</Value>
+ </Setting>
</Settings>
</SettingsFile>
\ No newline at end of file |