From 69de585d39d1c03a2764a91ac11cdb101248d396 Mon Sep 17 00:00:00 2001 From: Sour Date: Fri, 24 Apr 2020 17:26:03 -0400 Subject: [PATCH] Debugger: Event Viewer - Fixed options not working after cancelling out of another configuration dialog --- GUI.NET/Debugger/frmEventViewer.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GUI.NET/Debugger/frmEventViewer.cs b/GUI.NET/Debugger/frmEventViewer.cs index ec33a010..c5d5d009 100644 --- a/GUI.NET/Debugger/frmEventViewer.cs +++ b/GUI.NET/Debugger/frmEventViewer.cs @@ -161,6 +161,9 @@ namespace Mesen.GUI.Debugger return; } + //Update target for entitybinder (to prevent issues after rejecting changes in another form) + _config = ConfigManager.Config.DebugInfo; + _binder.Entity = _config; _binder.UpdateObject(); ctrlEventViewerPpuView.RefreshViewer(); }