summaryrefslogtreecommitdiffstats
path: root/win/C#/frmReadDVD.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-09-06 19:29:43 +0000
committersr55 <[email protected]>2007-09-06 19:29:43 +0000
commitf4b5569ecc77150c7bde00b9368aa81fe33b7cfd (patch)
treec8f0349eacbc44cab4c4ab8333d19187412d5b32 /win/C#/frmReadDVD.cs
parent34066d8b700f3ec50e77a59844e8467335ca043f (diff)
WinGui:
- DVD Title and chapter drop downs now reset when a new DVD source is scanned. - Queue code cleaned up a bit. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@930 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmReadDVD.cs')
-rw-r--r--win/C#/frmReadDVD.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs
index f697e3425..8adfb1d2a 100644
--- a/win/C#/frmReadDVD.cs
+++ b/win/C#/frmReadDVD.cs
@@ -20,7 +20,6 @@ namespace Handbrake
private Parsing.DVD thisDvd;
private Process hbProc;
private delegate void UpdateUIHandler();
- //private int cancel = 0;
public frmReadDVD(string inputFile, frmMain parent, frmDvdInfo dvdInfoWindow)
{
@@ -70,7 +69,10 @@ namespace Handbrake
mainWindow.drp_dvdtitle.Items.Clear();
mainWindow.drp_dvdtitle.Items.AddRange(thisDvd.Titles.ToArray());
-
+ mainWindow.drp_dvdtitle.Text = "Automatic";
+ mainWindow.drop_chapterFinish.Text = "Auto";
+ mainWindow.drop_chapterStart.Text = "Auto";
+
this.Close();
}
catch(Exception exc)
@@ -87,15 +89,12 @@ namespace Handbrake
}
Functions.CLI process = new Functions.CLI();
+
private void startProc(object state)
{
//string query = "-i " + '"' + inputFile + '"' + " -t0";
// hbProc = process.runCli(this, query, true, true, false, true);
- //*********************************************************************************************************************************************
- /*
- * Quick and Dirty hack to get around the stderr crashes of hbcli. Lets try feeding brians parser text straight from a text file.
- */
try
{
string appPath = Application.StartupPath.ToString()+ "\\";