Skip to content

Commit

Permalink
Fixed initial welcome panel on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Dec 12, 2024
1 parent 7e5f4de commit 7292103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Components/WelcomePanel.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class WelcomePanel : public Component
nvgFontSize(nvg, 34);
nvgTextAlign(nvg, NVG_ALIGN_CENTER | NVG_ALIGN_MIDDLE);
nvgFillColor(nvg, NVGComponent::convertColour(findColour(PlugDataColour::panelTextColourId)));
nvgText(nvg, getWidth() / 2, 210, "Welcome to plugdata", NULL);
nvgText(nvg, getWidth() / 2, getHeight() / 2 - 80, "Welcome to plugdata", NULL);
}
else {
nvgFontFace(nvg, "Inter-Bold");
Expand Down

0 comments on commit 7292103

Please sign in to comment.