Skip to content

Commit 109b005

Browse files
Fixed splash status multi line info
1 parent 9e2dc7e commit 109b005

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/component/misc/Splash.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ void Splash::paint(juce::Graphics& g) {
213213
/** Status */
214214
juce::Rectangle<int> statusRect(
215215
backGroundRect.getWidth() * 0.055, backGroundRect.getHeight() * 0.8,
216-
backGroundRect.getWidth() * 0.35, textFontHeight);
216+
backGroundRect.getWidth() * 0.35, textFontHeight * 2);
217217

218218
g.setFont(textFont);
219219
g.setColour(textColor);
220220
//g.drawRect(statusRect);
221-
g.drawFittedText(this->mesStr, statusRect, juce::Justification::centredLeft, 1, 1.f);
221+
g.drawFittedText(this->mesStr, statusRect, juce::Justification::topLeft, 2, 0.7f);
222222
}
223223

224224
void Splash::mouseDown(const juce::MouseEvent& e) {

0 commit comments

Comments
 (0)