diff options
author | sr55 <[email protected]> | 2007-07-16 17:12:47 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-07-16 17:12:47 +0000 |
commit | 82ae6b4bc0c502aacea3dd17b8d5e1ac5b22c04b (patch) | |
tree | ae1031d956e12ce635b8d5b5c58557c6b0699a54 /win/C# | |
parent | be1d65b182b5dfa603bfbfd5b1e492d3c77f33b8 (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#')
-rw-r--r-- | win/C#/HandBrakeCS.csproj | 1 | ||||
-rw-r--r-- | win/C#/frmMain.cs | 6 |
2 files changed, 2 insertions, 5 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj index 2316eb678..ebc5bfe41 100644 --- a/win/C#/HandBrakeCS.csproj +++ b/win/C#/HandBrakeCS.csproj @@ -63,7 +63,6 @@ <DependentUpon>frmOptions.cs</DependentUpon>
</Compile>
<Compile Include="Functions\CLI.cs" />
- <Compile Include="Functions\Update.cs" />
<Compile Include="Parsing\AudioTrack.cs" />
<Compile Include="Parsing\Chapter.cs" />
<Compile Include="Parsing\DVD.cs" />
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;
|