From d09e89d87907f19db8659da3a0d4c7e6b84d3427 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Feb 2011 06:32:26 +0000 Subject: [PATCH] Ram Watch - fix duplicate watch so that it responds to the user changing settings in the edit watch dialog --- BizHawk.MultiClient/tools/RamWatch.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index fc2ad8dfad..21ca0ad76f 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -17,7 +17,6 @@ namespace BizHawk.MultiClient public partial class RamWatch : Form { //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 //Multiselect is enabled but only one row can be highlighted by the user //DWORD display @@ -325,7 +324,7 @@ namespace BizHawk.MultiClient if (r.userSelected == true) { Changes(); - watchList.Add(watchList[x]); //TODO: Fail, add the userselected watchlist + watchList.Add(r.watch); DisplayWatchList(); } }