Handler name corrected (style change)

This commit is contained in:
Milan Hanajik 2015-07-01 16:31:57 +02:00
parent c957e28c00
commit c6bef8c699
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ namespace TBF
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.mainSplitContainer);
this.Name = "TransitionsDlg";
this.Load += new System.EventHandler(this.ProcedureDlg_Load);
this.Load += new System.EventHandler(this.TransitionsDlg_Load);
this.mainSplitContainer.Panel1.ResumeLayout(false);
this.mainSplitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).EndInit();

View File

@ -85,7 +85,7 @@ namespace TBF
Text = Strings.Transitions;
}
private void ProcedureDlg_Load(object sender, EventArgs e)
private void TransitionsDlg_Load(object sender, EventArgs e)
{
TBF.LocalSettings ls = Program.LocalSettings;
Width = (ls.TransitionsDlgWidth > 0) ? ls.TransitionsDlgWidth : 1050;