summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-09-02 10:05:31 +0000
committersr55 <[email protected]>2009-09-02 10:05:31 +0000
commitfcaf0013ed3fe61bdbec8de9a8f1312775779999 (patch)
tree3297bea665d358a3076589822dba91852fb0cf27 /win/C#/frmMain.cs
parent8c95bc6eaf24d7aa76736d985bac02861f290e35 (diff)
WinGui:
- Fix spelling error with regards to no auto name directory set. - Lower Res check limit to 620. Should allow overscan tv's to work just fine. - cleaned up program.cs a bit. - Fixed the show queue button. It now activates the queue window correctly. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2799 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 53b1541d7..ec2b3a6e1 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -756,6 +756,7 @@ namespace Handbrake
private void btn_showQueue_Click(object sender, EventArgs e)
{
queueWindow.Show();
+ queueWindow.Activate();
}
private void tb_preview_Click(object sender, EventArgs e)
{
@@ -938,7 +939,7 @@ namespace Handbrake
if (autoPath != null)
text_destination.Text = autoPath;
else
- MessageBox.Show("You currently have \"Automatically name output files\" enabled for the destination file box, but you do not have a default direcotry set.\n\nYou should set a \"Default Path\" in HandBrakes preferences. (See 'Tools' menu -> 'Options' -> 'General' Tab -> 'Default Path')", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
+ MessageBox.Show("You currently have \"Automatically name output files\" enabled for the destination file box, but you do not have a default directory set.\n\nYou should set a \"Default Path\" in HandBrakes preferences. (See 'Tools' menu -> 'Options' -> 'General' Tab -> 'Default Path')", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
data_chpt.Rows.Clear();