Skip to content

Commit

Permalink
Store layout fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Dec 3, 2024
1 parent c308a88 commit 3103e67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Dialogs/Dialogs.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class Dialog : public Component {
}

if (closeButton) {
auto closeButtonBounds = Rectangle<int>(viewedComponent->getRight() - 35, viewedComponent->getY() + 8, 28, 28);
auto closeButtonBounds = Rectangle<int>(viewedComponent->getRight() - 35, viewedComponent->getY() + 6, 28, 28);
closeButton->setBounds(closeButtonBounds);
}
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Dialogs/PatchStore.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<PatchDisplay> patchDisplays;
std::mutex patchesMutex;
Expand Down

0 comments on commit 3103e67

Please sign in to comment.