From 5f1d29efe1d78d2019899619440250e5e760d614 Mon Sep 17 00:00:00 2001 From: sr55 Date: Mon, 22 Jun 2009 20:24:17 +0000 Subject: WinGui: - Stop using Strings for CheckBoxes in IF statements. They can return a boolean values. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2599 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Controls/x264Panel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win/C#/Controls') diff --git a/win/C#/Controls/x264Panel.cs b/win/C#/Controls/x264Panel.cs index e86c1a105..503fcc253 100644 --- a/win/C#/Controls/x264Panel.cs +++ b/win/C#/Controls/x264Panel.cs @@ -15,7 +15,7 @@ namespace Handbrake.Controls { InitializeComponent(); - if (Properties.Settings.Default.tooltipEnable == "Checked") + if (Properties.Settings.Default.tooltipEnable) setToolTipActive(true); reset2Defaults(); -- cgit v1.2.3