From 48add5f933573546bc96e73a9160dabbfa989ee3 Mon Sep 17 00:00:00 2001 From: Armin Date: Sun, 9 Aug 2026 14:32:34 +0200 Subject: [PATCH] Fix layout bug --- Source/PluginEditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index ec29dd1..74e97a1 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -22,13 +22,13 @@ static constexpr int COL_REVERB = COL_DELAY + KNOB_W + KNOB_GAP; static constexpr int COL_RINGMOD = COL_REVERB + KNOB_W + KNOB_GAP; static constexpr int COL_DESTR = COL_RINGMOD + KNOB_W + KNOB_GAP; static constexpr int COL_SHUFFLE = COL_DESTR + KNOB_W + KNOB_GAP; -static constexpr int TOTAL_W = COL_SHUFFLE + KNOB_W; +static constexpr int TOTAL_W = 832; static constexpr int FOOTER_H = 24; // Header knob x positions (compact layout) static constexpr int HDR_KNOB = 36; static constexpr int HDR_GAP = 4; -static constexpr int HDR_VOL = 356; +static constexpr int HDR_VOL = 412; static constexpr int HDR_PAN = HDR_VOL + HDR_KNOB + HDR_GAP; static constexpr int HDR_RING = HDR_PAN + HDR_KNOB + HDR_GAP; static constexpr int HDR_DEST = HDR_RING + HDR_KNOB + HDR_GAP;