summaryrefslogtreecommitdiff
path: root/src/touchmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/touchmanager.cpp')
-rw-r--r--src/touchmanager.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/touchmanager.cpp b/src/touchmanager.cpp
index d9cd14087..efa4758b1 100644
--- a/src/touchmanager.cpp
+++ b/src/touchmanager.cpp
@@ -247,8 +247,9 @@ void TouchManager::draw()
return;
Font *const font = boldFont;
- mainGraphics->setColorAll(theme->getColor(Theme::TEXT, 255),
- theme->getColor(Theme::TEXT_OUTLINE, 255));
+ const Color &color1 = theme->getColor(Theme::TEXT, 255);
+ const Color &color2 = theme->getColor(Theme::TEXT_OUTLINE, 255);
+
FOR_EACH (TouchItemVectorCIter, it, mObjects)
{
const TouchItem *const item = *it;
@@ -259,7 +260,10 @@ void TouchManager::draw()
/ 2 + item->x;
const int textY = (item->rect.height - font->getHeight())
/ 2 + item->y;
- font->drawString(mainGraphics, str, textX, textY);
+ font->drawString(mainGraphics,
+ color1,
+ color2,
+ str, textX, textY);
}
}
}