Fix slow Ctrl+A on Ram Search and Ram Watch, fixes #630
This commit is contained in:
parent
574584c079
commit
3bf11dbf68
|
@ -1729,6 +1729,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void WatchListView_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (WatchListView.SelectAllInProgress)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
RemoveToolBarItem.Enabled =
|
||||
AddToRamWatchToolBarItem.Enabled =
|
||||
SelectedIndices.Any();
|
||||
|
|
|
@ -1140,6 +1140,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void WatchListView_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (WatchListView.SelectAllInProgress)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
PokeAddressToolBarItem.Enabled =
|
||||
FreezeAddressToolBarItem.Enabled =
|
||||
SelectedIndices.Any() &&
|
||||
|
|
Loading…
Reference in New Issue