From d8df4ab2c6bec7446b46cb39074285c6bd02699a Mon Sep 17 00:00:00 2001 From: brunom Date: Sun, 12 Jul 2026 19:14:47 -0300 Subject: [PATCH] fix: Show 16 bytes per row in the memory view of the internal debugger --- src/Spice86/Views/MemoryView.axaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Spice86/Views/MemoryView.axaml.cs b/src/Spice86/Views/MemoryView.axaml.cs index 4410a09bc0..ad9a4dc055 100644 --- a/src/Spice86/Views/MemoryView.axaml.cs +++ b/src/Spice86/Views/MemoryView.axaml.cs @@ -25,6 +25,7 @@ public MemoryView() { DataContextChanged += OnDataContextChanged; this.HexViewer.DoubleTapped += OnHexViewerDoubleTapped; + HexViewer.HexView.BytesPerLine = 16; } private void OnHexViewerDoubleTapped(object? sender, TappedEventArgs e) {