summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-01-06 16:33:57 +0000
committersr55 <[email protected]>2008-01-06 16:33:57 +0000
commitf1c3f6d98e030b178c848cc93220db10055ea91a (patch)
treed63ae0f4019115925092123bff65df017c2a0785 /win/C#/frmMain.cs
parentb4194f6f8a974f8037fb65e9ed41ae31db8761c7 (diff)
WinGui:
- Fixed: for Auto-naming where it would incorrectly set directory when the user had no default set - Fixed: A few control's were not set to transparent so showed up incorrectly on themed windows machines. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1167 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index c5c2fdf14..bd6d57208 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -692,9 +692,16 @@ namespace Handbrake
{
CheckPixelRatio.Enabled = false;
CheckPixelRatio.Checked = false;
+ text_height.Text = "";
+ text_height.Enabled = false;
+ text_height.BackColor = Color.LightGray;
}
else
+ {
CheckPixelRatio.Enabled = true;
+ text_height.Enabled = true;
+ text_height.BackColor = Color.White;
+ }
}
private void check_2PassEncode_CheckedChanged(object sender, EventArgs e)