add to last commit

This commit is contained in:
haven1433 2025-12-12 21:31:25 -06:00
parent 47d5aa830d
commit 9c5fa427f9

View File

@ -67,6 +67,7 @@ namespace HavenSoft.HexManiac.Core.ViewModels.Tools {
var destination = viewPort.Model.ReadPointer(Start);
if (viewPort.Model.GetNextRun(destination) is IStreamRun run) {
content = run.SerializeRun() ?? string.Empty;
ElementContent.PreFormatter = run.PreFormatter;
} else if (viewPort.Model.GetNextRun(destination) is ITableRun tRun) {
var proxy = new TableStreamRun(Model, tRun.Start, tRun.PointerSources, tRun.FormatString,
tRun.ElementContent, new FixedLengthStreamStrategy(tRun.ElementCount));