diff --git a/src/HexManiac.Core/ViewModels/ViewPort.cs b/src/HexManiac.Core/ViewModels/ViewPort.cs index e4a80cb5..5fb9495f 100644 --- a/src/HexManiac.Core/ViewModels/ViewPort.cs +++ b/src/HexManiac.Core/ViewModels/ViewPort.cs @@ -721,6 +721,9 @@ namespace HavenSoft.HexManiac.Core.ViewModels { public void Refresh() { scroll.DataLength = Model.Count; RefreshBackingData(); + using (ModelCacheScope.CreateScope(Model)) { + Tools.TableTool.DataForCurrentRunChanged(); + } } public void RaiseError(string text) => OnError?.Invoke(this, text);