diff --git a/TestBenchFramework/TransitionsDlg.Designer.cs b/TestBenchFramework/TransitionsDlg.Designer.cs index 81b8863fa..3351a8fbf 100644 --- a/TestBenchFramework/TransitionsDlg.Designer.cs +++ b/TestBenchFramework/TransitionsDlg.Designer.cs @@ -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(); diff --git a/TestBenchFramework/TransitionsDlg.cs b/TestBenchFramework/TransitionsDlg.cs index 90cc711f7..b620f3d5b 100644 --- a/TestBenchFramework/TransitionsDlg.cs +++ b/TestBenchFramework/TransitionsDlg.cs @@ -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;