diff --git a/Source/Components/WelcomePanel.h b/Source/Components/WelcomePanel.h index 4a4fb91d3..c293091a5 100644 --- a/Source/Components/WelcomePanel.h +++ b/Source/Components/WelcomePanel.h @@ -677,6 +677,9 @@ class WelcomePanel : public Component auto const buttonY = getHeight() * 0.5f - 30; newPatchTile->setBounds(rowBounds.withX(startX).withWidth(buttonWidth).withY(buttonY)); openPatchTile->setBounds(rowBounds.withX(startX + buttonWidth + tileSpacing).withWidth(buttonWidth).withY(buttonY)); + + auto firstTileBounds = rowBounds.removeFromLeft(actualTileWidth * 1.5f); + storeTile->setBounds(firstTileBounds); } else { auto firstTileBounds = rowBounds.removeFromLeft(actualTileWidth * 1.5f); newPatchTile->setBounds(firstTileBounds);