]> granicus.if.org Git - handbrake/commitdiff
WinGui:
authorsr55 <sr55.hb@outlook.com>
Mon, 16 Jul 2007 17:12:47 +0000 (17:12 +0000)
committersr55 <sr55.hb@outlook.com>
Mon, 16 Jul 2007 17:12:47 +0000 (17:12 +0000)
- 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

win/C#/HandBrakeCS.csproj
win/C#/frmMain.cs

index 2316eb6787867f77a90ec57f5e9458841974c617..ebc5bfe4117d51615cfd97d047af24e4b5d7f207 100644 (file)
@@ -63,7 +63,6 @@
       <DependentUpon>frmOptions.cs</DependentUpon>\r
     </Compile>\r
     <Compile Include="Functions\CLI.cs" />\r
-    <Compile Include="Functions\Update.cs" />\r
     <Compile Include="Parsing\AudioTrack.cs" />\r
     <Compile Include="Parsing\Chapter.cs" />\r
     <Compile Include="Parsing\DVD.cs" />\r
index 234af0aa4c67cd764b32403feafa0274386ef4bc..428b1b06a1962d28896c33cbe8420c8267224f5a 100644 (file)
@@ -611,6 +611,7 @@ namespace Handbrake
 \r
         private void procMonitor(object state)\r
         {\r
+            //******* BUG HERE, hbProc is not getting passed in here.\r
             MessageBox.Show("The encode process has now started.", "Status", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);\r
             hbProc.WaitForExit();\r
             hbProc.Close();\r
@@ -984,7 +985,7 @@ namespace Handbrake
                 }\r
 \r
                 drp_audioChannels.Items.Clear();\r
-                drp_subtitle.Items.Add("Automatic");\r
+                drp_audioChannels.Items.Add("Automatic");\r
                 drp_audioChannels.Items.AddRange(selectedTitle.AudioTracks.ToArray());\r
                 if (drp_audioChannels.Items.Count > 0)\r
                 {\r
@@ -1002,9 +1003,6 @@ namespace Handbrake
         } \r
 \r
         // The Query Generation Function\r
-        // This function was imported from old vb.net version of this application.\r
-        // It could probably do with being cleaned up a good deal at some point\r
-  \r
         public string GenerateTheQuery()\r
         {\r
             string source = text_source.Text;\r