Ram Search - a minor code refactor - remove a functional call that is only used once in another function and just do the code there

This commit is contained in:
adelikat 2015-01-02 21:33:03 +00:00
parent 698e080312
commit 153e823f78
1 changed files with 5 additions and 10 deletions

View File

@ -891,15 +891,6 @@ namespace BizHawk.Client.EmuHawk
}
}
private void ToggleAutoSearch()
{
_autoSearch ^= true;
AutoSearchCheckBox.Checked = _autoSearch;
DoSearchToolButton.Enabled =
SearchButton.Enabled =
!_autoSearch;
}
private void GoToSpecifiedAddress()
{
WatchListView.SelectedIndices.Clear();
@ -1289,7 +1280,11 @@ namespace BizHawk.Client.EmuHawk
private void AutoSearchMenuItem_Click(object sender, EventArgs e)
{
ToggleAutoSearch();
_autoSearch ^= true;
AutoSearchCheckBox.Checked = _autoSearch;
DoSearchToolButton.Enabled =
SearchButton.Enabled =
!_autoSearch;
}
private void ExcludeRamWatchMenuItem_Click(object sender, EventArgs e)