summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-02-02 15:34:27 +0000
committersr55 <[email protected]>2008-02-02 15:34:27 +0000
commitcdc741bb0ce20aabffe06fac42270aac98b8f2c6 (patch)
treed4178727d88f2d17325bde9ac7205163db4306f2 /win/C#/frmMain.cs
parent040cab19c1151d50063d602f336bd86b2430ca5d (diff)
WinGui:
- now using C#.Net 08 - Fixed bug with VFR setting framerate when enabled. - Fixed potential framerate bug (passing framerate without -r to the CLI) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1245 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index bd7601917..0d9e6f4c1 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -733,16 +733,14 @@ namespace Handbrake
private void check_largeFile_CheckedChanged(object sender, EventArgs e)
{
- if (!text_destination.Text.Contains(".mp4"))
+ if ((!text_destination.Text.Contains(".mp4")) && (!text_destination.Text.Contains(".m4v")))
{
- lbl_largeMp4Warning.Text = "Warning: Only mp4 files are supported";
- lbl_largeMp4Warning.ForeColor = Color.Red;
+ check_largeFile.BackColor = Color.LightCoral;
check_largeFile.CheckState = CheckState.Unchecked;
}
else
{
- lbl_largeMp4Warning.Text = "Warning: Breaks iPod, @TV, PS3 compatibility.";
- lbl_largeMp4Warning.ForeColor = Color.Black;
+ check_largeFile.BackColor = Color.Transparent;
}
}