Ram Watch - Remove Watch function implemented
This commit is contained in:
parent
e62c1bc673
commit
d0a0d198f0
|
@ -176,6 +176,14 @@ namespace BizHawk.MultiClient
|
|||
|
||||
void RemoveWatch()
|
||||
{
|
||||
//TODO: flag that changes have been made
|
||||
//TODO: why can't the user selected multiple indices even though mutliselect is set to true?
|
||||
ListView.SelectedIndexCollection indexes = WatchListView.SelectedIndices;
|
||||
foreach (int index in indexes)
|
||||
{
|
||||
watchList.Remove(watchList[index]);
|
||||
}
|
||||
DisplayWatchList();
|
||||
}
|
||||
|
||||
void DuplicateWatch()
|
||||
|
|
Loading…
Reference in New Issue