From 7af2f71fa0efe04e4cce27e97f696bff74743af0 Mon Sep 17 00:00:00 2001 From: EvilDragon Date: Mon, 13 Sep 2021 02:15:49 +0200 Subject: [PATCH] Fix step seq cell spacing in unipolar mode (#5068) --- src/gui/widgets/LFOAndStepDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/widgets/LFOAndStepDisplay.cpp b/src/gui/widgets/LFOAndStepDisplay.cpp index 812480af45b..1b0cb536aee 100644 --- a/src/gui/widgets/LFOAndStepDisplay.cpp +++ b/src/gui/widgets/LFOAndStepDisplay.cpp @@ -685,7 +685,7 @@ void LFOAndStepDisplay::paintStepSeq(juce::Graphics &g) if (isUnipolar()) { auto sv = std::max(ss->steps[i], 0.f); - v = v.withTrimmedTop((int)(v.getHeight() * (1 - sv))); + v = v.withTrimmedTop((int)(v.getHeight() * (1 - sv))).withTrimmedRight(1); } else {