Ram Watch - fix duplicate watch so that it responds to the user changing settings in the edit watch dialog
This commit is contained in:
parent
9077371aa0
commit
d09e89d879
|
@ -17,7 +17,6 @@ namespace BizHawk.MultiClient
|
||||||
public partial class RamWatch : Form
|
public partial class RamWatch : Form
|
||||||
{
|
{
|
||||||
//TODO:
|
//TODO:
|
||||||
//Make a context menu for add/remove/Dup/etc, make the context menu & edit watch windows appear in relation to where they right clicked
|
|
||||||
//TODO: Call AskSave in main client X function
|
//TODO: Call AskSave in main client X function
|
||||||
//Multiselect is enabled but only one row can be highlighted by the user
|
//Multiselect is enabled but only one row can be highlighted by the user
|
||||||
//DWORD display
|
//DWORD display
|
||||||
|
@ -325,7 +324,7 @@ namespace BizHawk.MultiClient
|
||||||
if (r.userSelected == true)
|
if (r.userSelected == true)
|
||||||
{
|
{
|
||||||
Changes();
|
Changes();
|
||||||
watchList.Add(watchList[x]); //TODO: Fail, add the userselected watchlist
|
watchList.Add(r.watch);
|
||||||
DisplayWatchList();
|
DisplayWatchList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue