From f141dd256c798cbccad13daed6be4b99d36cc7b9 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Fri, 6 Jun 2014 16:58:48 -0500 Subject: [PATCH] Fixed "WORKING" text hiding the G at some resolutions. --- src/components/BusyComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BusyComponent.cpp b/src/components/BusyComponent.cpp index 3416530dc..68822c54f 100644 --- a/src/components/BusyComponent.cpp +++ b/src/components/BusyComponent.cpp @@ -40,7 +40,7 @@ void BusyComponent::onSizeChanged() const float middleSpacerWidth = 0.01f * Renderer::getScreenWidth(); const float textHeight = mText->getFont()->getLetterHeight(); mText->setSize(0, textHeight); - const float textWidth = mText->getSize().x(); + const float textWidth = mText->getSize().x() + 4; mGrid.setColWidthPerc(1, textHeight / mSize.x()); // animation is square mGrid.setColWidthPerc(2, middleSpacerWidth / mSize.x());