diff options
author | sr55 <[email protected]> | 2014-08-02 15:18:50 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-08-02 15:18:50 +0000 |
commit | 6ea78897d46244337d7b857555b843451cc7aeea (patch) | |
tree | 24ef639cca12251bc4b7c004aa2b86185fcaa7c1 /win/CS/HandBrakeWPF/AppArguments.cs | |
parent | 872a601d453f16a41c8994f9f98453a5ecadad64 (diff) |
WinGui: Fix a styling issue on the preview window. Disable libhb encode for the upcoming release so that users don't inadvertently turn it on. Made the new preview window an optional setting, off by default as it's a Alpha feature. (See Preferences)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6256 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/AppArguments.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/AppArguments.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/AppArguments.cs b/win/CS/HandBrakeWPF/AppArguments.cs index 970ba9957..107eb7e5c 100644 --- a/win/CS/HandBrakeWPF/AppArguments.cs +++ b/win/CS/HandBrakeWPF/AppArguments.cs @@ -18,5 +18,10 @@ namespace HandBrakeWPF /// Gets or sets a value indicating whether is instant hand brake.
/// </summary>
public static bool IsInstantHandBrake { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether enable lib hb.
+ /// </summary>
+ public static bool EnableLibHB { get; set; }
}
}
|