summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-07-16 17:12:47 +0000
committersr55 <[email protected]>2007-07-16 17:12:47 +0000
commit82ae6b4bc0c502aacea3dd17b8d5e1ac5b22c04b (patch)
treeae1031d956e12ce635b8d5b5c58557c6b0699a54 /win/C#/frmMain.cs
parentbe1d65b182b5dfa603bfbfd5b1e492d3c77f33b8 (diff)
WinGui:
- Fixed: Audio Channel drop down has no Automatic Option. - A few other small changes. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@698 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 234af0aa4..428b1b06a 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -611,6 +611,7 @@ namespace Handbrake
private void procMonitor(object state)
{
+ //******* BUG HERE, hbProc is not getting passed in here.
MessageBox.Show("The encode process has now started.", "Status", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
hbProc.WaitForExit();
hbProc.Close();
@@ -984,7 +985,7 @@ namespace Handbrake
}
drp_audioChannels.Items.Clear();
- drp_subtitle.Items.Add("Automatic");
+ drp_audioChannels.Items.Add("Automatic");
drp_audioChannels.Items.AddRange(selectedTitle.AudioTracks.ToArray());
if (drp_audioChannels.Items.Count > 0)
{
@@ -1002,9 +1003,6 @@ namespace Handbrake
}
// The Query Generation Function
- // This function was imported from old vb.net version of this application.
- // It could probably do with being cleaned up a good deal at some point
-
public string GenerateTheQuery()
{
string source = text_source.Text;