summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-01-29 21:49:05 +0000
committersr55 <[email protected]>2009-01-29 21:49:05 +0000
commit0333e36d98952fc75b07a35bb2dd5affe526b25a (patch)
tree98bfbe7260eae1cffba33107bd19379cadad2b11 /win/C#/frmOptions.cs
parent9cfe126a970a4a7c544b8142224675a93637d31e (diff)
WinGui:
- Code cleanup git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2106 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index dae22fe18..e56dbe79e 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -205,7 +205,7 @@ namespace Handbrake
private void check_saveLogWithVideo_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.saveLogWithVideo = check_saveLogWithVideo.CheckState.ToString();
- if (check_saveLogWithVideo.Checked == true)
+ if (check_saveLogWithVideo.Checked)
text_logPath.Text = "";
}