From 3103e67d84aa88b88f93178b34762d71f85067a8 Mon Sep 17 00:00:00 2001 From: Timothy Schoen Date: Tue, 3 Dec 2024 20:14:04 +0100 Subject: [PATCH] Store layout fixes --- Source/Dialogs/Dialogs.h | 2 +- Source/Dialogs/PatchStore.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Dialogs/Dialogs.h b/Source/Dialogs/Dialogs.h index 8609f0e7d..067ca6a8a 100644 --- a/Source/Dialogs/Dialogs.h +++ b/Source/Dialogs/Dialogs.h @@ -86,7 +86,7 @@ class Dialog : public Component { } if (closeButton) { - auto closeButtonBounds = Rectangle(viewedComponent->getRight() - 35, viewedComponent->getY() + 8, 28, 28); + auto closeButtonBounds = Rectangle(viewedComponent->getRight() - 35, viewedComponent->getY() + 6, 28, 28); closeButton->setBounds(closeButtonBounds); } } diff --git a/Source/Dialogs/PatchStore.h b/Source/Dialogs/PatchStore.h index a3a0d0721..0e8c0a402 100644 --- a/Source/Dialogs/PatchStore.h +++ b/Source/Dialogs/PatchStore.h @@ -351,7 +351,7 @@ class PatchDisplay : public Component { class PatchContainer : public Component , public AsyncUpdater { int const displayWidth = 260; - int const displayHeight = 300; + int const displayHeight = 315; OwnedArray patchDisplays; std::mutex patchesMutex;