Lua Writer - color config - re-hook up the load event that got clobbered at some point

This commit is contained in:
adelikat 2012-07-24 01:39:19 +00:00
parent 6c5c33ea7a
commit 08e79f26a2
2 changed files with 155 additions and 149 deletions

View File

@ -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();

View File

@ -78,5 +78,9 @@ namespace BizHawk.MultiClient.tools
}
}
private void OK_Click(object sender, EventArgs e)
{
}
}
}