Ops use the right events

This commit is contained in:
KillzXGaming 2019-05-01 17:18:29 -04:00
parent 577466dcdd
commit c6cee62073
4 changed files with 4 additions and 4 deletions

Binary file not shown.

View file

@ -1012,7 +1012,7 @@
this.botwGamePathTB.Name = "botwGamePathTB";
this.botwGamePathTB.Size = new System.Drawing.Size(258, 20);
this.botwGamePathTB.TabIndex = 8;
this.botwGamePathTB.TextChanged += new System.EventHandler(this.botwGamePathTB_TextChanged);
this.botwGamePathTB.Click += new System.EventHandler(this.botwGamePathTB_Click);
//
// stLabel14
//
@ -1030,7 +1030,7 @@
this.tpGamePathTB.Name = "tpGamePathTB";
this.tpGamePathTB.Size = new System.Drawing.Size(258, 20);
this.tpGamePathTB.TabIndex = 6;
this.tpGamePathTB.TextChanged += new System.EventHandler(this.tpGamePathTB_TextChanged);
this.tpGamePathTB.Click += new System.EventHandler(this.tpGamePathTB_Click);
//
// Settings
//

View file

@ -412,7 +412,7 @@ namespace Toolbox
}
}
private void tpGamePathTB_TextChanged(object sender, EventArgs e) {
private void tpGamePathTB_Click(object sender, EventArgs e) {
FolderSelectDialog sfd = new FolderSelectDialog();
if (sfd.ShowDialog() == DialogResult.OK)
{
@ -421,7 +421,7 @@ namespace Toolbox
}
}
private void botwGamePathTB_TextChanged(object sender, EventArgs e) {
private void botwGamePathTB_Click(object sender, EventArgs e) {
FolderSelectDialog sfd = new FolderSelectDialog();
if (sfd.ShowDialog() == DialogResult.OK)
{