Skip to content

Commit

Permalink
Fix copy paste mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
HurpDurp committed Feb 20, 2016
1 parent d4a4b17 commit 138fd63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TF2 Benchmarker/TF2 Benchmarker/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -422,23 +422,23 @@ private void txt_configaddvalue_Enter(object sender, EventArgs e)
{
BeginInvoke((Action)delegate
{
txt_configaddname.SelectAll();
txt_configaddvalue.SelectAll();
});
}

private void txt_benchcommand_Enter(object sender, EventArgs e)
{
BeginInvoke((Action)delegate
{
txt_configaddname.SelectAll();
txt_benchcommand.SelectAll();
});
}

private void txt_benchmarkval_Enter(object sender, EventArgs e)
{
BeginInvoke((Action)delegate
{
txt_configaddname.SelectAll();
txt_benchmarkval.SelectAll();
});
}

Expand Down

0 comments on commit 138fd63

Please sign in to comment.