diff options
author | sr55 <[email protected]> | 2007-08-24 21:10:32 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-08-24 21:10:32 +0000 |
commit | 2548077aee301044b45aca605f6949fec78903a9 (patch) | |
tree | 53473ca73979892b2118cbf57c93dd704ab67bcf /win/C#/frmMain.cs | |
parent | 056b3e7f595b417c956b633ab20e79f6747aa70e (diff) |
WinGui:
- Fixed View DVD Information window not loading the dvdinfo.dat file every time the window is launched.
- Fixed a small file path issue with frmReadDVD
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@865 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 72c87904f..30360a66d 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -30,7 +30,7 @@ namespace Handbrake // - Load users default settings. (if required)
// - Do an update check (if required)
// --------------------------------------------------------------
- private frmDvdInfo dvdInfoWindow = new frmDvdInfo();
+ //private frmDvdInfo dvdInfoWindow = new frmDvdInfo();
public frmMain()
{
@@ -41,8 +41,8 @@ namespace Handbrake InitializeComponent();
// This is a quick Hack fix for the cross-thread problem with frmDvdIndo ************************
- dvdInfoWindow.Show();
- dvdInfoWindow.Hide();
+ //dvdInfoWindow.Show();
+ //dvdInfoWindow.Hide();
// **********************************************************************************************
@@ -383,8 +383,8 @@ namespace Handbrake {
try
{
+ frmDvdInfo dvdInfoWindow = new frmDvdInfo();
dvdInfoWindow.Show();
-
}
catch (Exception)
{
@@ -911,8 +911,8 @@ namespace Handbrake private void btn_Browse_Click(object sender, EventArgs e)
{
String filename ="";
- text_source.Text = "";
-
+ text_source.Text = "";
+ frmDvdInfo dvdInfoWindow = new frmDvdInfo();
if (RadioDVD.Checked)
{
DVD_Open.ShowDialog();
@@ -1229,7 +1229,7 @@ namespace Handbrake }
}
}
- catch (Exception exc)
+ catch (Exception)
{
// No need to throw an error here.
// Note on non english systems, this will throw an error because of double.Parse(lbl_Aspect.Text); not working.
|