diff options
author | brianmario <[email protected]> | 2007-07-11 02:24:48 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-11 02:24:48 +0000 |
commit | 1f013f7fed5b0103afe4e33a860be91b2e94f660 (patch) | |
tree | 752287ade8c65dc22edac75af53d526081869d11 /win/C#/frmDVDData.Designer.cs | |
parent | ec8aaeacdf2eebb162abb54f419035e10cdd2e73 (diff) |
updated some Form.Show calls to Form.ShowDialog
updating frmReadDVD to throw CLI call on it's own thread to prevent UI lockup
added ToString overrides in Parsing.AudioTrack, Parsing.Subtitle and Parsing.Title
misc interface/notification updates to frmReadDVD upon starting the scan process
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@671 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmDVDData.Designer.cs')
-rw-r--r-- | win/C#/frmDVDData.Designer.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/C#/frmDVDData.Designer.cs b/win/C#/frmDVDData.Designer.cs index 005be7e5a..6476e7ec9 100644 --- a/win/C#/frmDVDData.Designer.cs +++ b/win/C#/frmDVDData.Designer.cs @@ -68,8 +68,9 @@ namespace Handbrake this.btn_close.TabStop = false;
this.btn_close.Text = "Close Window";
this.btn_close.UseVisualStyleBackColor = false;
+ this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
//
- // DVDData
+ // frmDVDData
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@@ -78,7 +79,7 @@ namespace Handbrake this.Controls.Add(this.rtf_dvdInfo);
this.Controls.Add(this.btn_close);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "DVDData";
+ this.Name = "frmDVDData";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Read DVD";
this.ResumeLayout(false);
|