From f425db92a42c57bc46f0fe793219d405191bebef Mon Sep 17 00:00:00 2001 From: Lunix-420 Date: Sat, 9 May 2026 13:46:19 +0200 Subject: [PATCH] fix: adjust image width for oscilloscope rendering --- src/dmt/gui/widget/Oscilloscope.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dmt/gui/widget/Oscilloscope.h b/src/dmt/gui/widget/Oscilloscope.h index eb50d02..7bacafa 100644 --- a/src/dmt/gui/widget/Oscilloscope.h +++ b/src/dmt/gui/widget/Oscilloscope.h @@ -264,7 +264,7 @@ class alignas(64) Oscilloscope : public juce::Thread } #else for (auto& image : images) { - image = Image(PixelFormat::ARGB, _width, _height, true); + image = Image(PixelFormat::ARGB, _width + 10, _height, true); } #endif