summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-05-07 20:43:49 +0000
committersr55 <[email protected]>2008-05-07 20:43:49 +0000
commitc99236b3cd8fff2b67e93fb8a8c3a8f76dca223a (patch)
treefc2035a531fea21ed5206a93ac3cccdfc6ef6ae6 /win/C#/frmMain.cs
parent707962e0c733ca594a790ec5213eb85455b7dd64 (diff)
WinGui:
- Got rid of the DVD info window. DVD information can now be read from the activity window. - Removed some unused code calls to frmDvdInfo. - Changed frmActivityWindow design, removed all buttons, text window now expands as the window size grows. Basically, the window is identical to the MacGUI window now. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1454 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 052f1b719..b9aad1efe 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -343,7 +343,7 @@ namespace Handbrake
}
private void mnu_viewDVDdata_Click(object sender, EventArgs e)
{
- frmDvdInfo dvdInfoWindow = new frmDvdInfo();
+ frmActivityWindow dvdInfoWindow = new frmActivityWindow("dvdinfo.dat");
dvdInfoWindow.Show();
}
private void mnu_options_Click(object sender, EventArgs e)
@@ -456,7 +456,7 @@ namespace Handbrake
}
private void btn_ActivityWindow_Click(object sender, EventArgs e)
{
- Form ActivityWindow = new frmActivityWindow();
+ frmActivityWindow ActivityWindow = new frmActivityWindow("hb_encode_log.dat");
ActivityWindow.ShowDialog();
}
@@ -465,7 +465,6 @@ namespace Handbrake
{
String filename = "";
text_source.Text = "";
- frmDvdInfo dvdInfoWindow = new frmDvdInfo();
if (check_fileMode.Checked)
{
@@ -484,7 +483,7 @@ namespace Handbrake
{
if (filename != "")
{
- Form frmRD = new frmReadDVD(filename, this, dvdInfoWindow);
+ Form frmRD = new frmReadDVD(filename, this);
text_source.Text = filename;
frmRD.ShowDialog();
}