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;