diff options
author | sr55 <[email protected]> | 2009-04-14 22:41:45 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-04-14 22:41:45 +0000 |
commit | a1365b1285c50c34e58172289330c089125c6f93 (patch) | |
tree | 5164c3395abac68d2293996569b233e3ad403fa3 /win/C#/Controls | |
parent | 7d4c044ebd62fdeac7a5665ec8fcd2548611ff51 (diff) |
WinGui:
- Patch by ExDeus - http://forum.handbrake.fr/viewtopic.php?f=4&t=9642&start=25#p54267
- Few redundant code functions removed, code layout tweaks.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2328 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls')
-rw-r--r-- | win/C#/Controls/x264Panel.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/C#/Controls/x264Panel.cs b/win/C#/Controls/x264Panel.cs index 6790bb743..dd1572abb 100644 --- a/win/C#/Controls/x264Panel.cs +++ b/win/C#/Controls/x264Panel.cs @@ -8,6 +8,11 @@ namespace Handbrake.Controls public x264Panel()
{
InitializeComponent();
+
+ if (Properties.Settings.Default.tooltipEnable == "Checked")
+ setToolTipActive(true);
+
+ reset2Defaults();
}
public string x264Query
|