Lua Writer - color config - re-hook up the load event that got clobbered at some point
This commit is contained in:
parent
6c5c33ea7a
commit
08e79f26a2
|
@ -56,6 +56,7 @@
|
|||
this.OK.TabIndex = 10;
|
||||
this.OK.Text = "&OK";
|
||||
this.OK.UseVisualStyleBackColor = true;
|
||||
this.OK.Click += new System.EventHandler(this.OK_Click);
|
||||
//
|
||||
// Cancel
|
||||
//
|
||||
|
@ -175,6 +176,7 @@
|
|||
this.Name = "LuaWriterColorConfig";
|
||||
this.ShowIcon = false;
|
||||
this.Text = "Syntax Highlight Config";
|
||||
this.Load += new System.EventHandler(this.LuaWriterColorConfig_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
|
|
|
@ -78,5 +78,9 @@ namespace BizHawk.MultiClient.tools
|
|||
}
|
||||
}
|
||||
|
||||
private void OK_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue