[Kandinsky] drawChar now takes two colors

Change-Id: I0d99bb5e6c22ad582d82eae643168e6c1118f434
This commit is contained in:
Romain Goyet
2016-09-15 16:34:01 +02:00
parent 8f9d9d0b0b
commit 3e62ead069
13 changed files with 55 additions and 18 deletions

View File

@@ -16,7 +16,7 @@ void StackView::setName(const char * name) {
void StackView::drawRect(KDContext * ctx, KDRect rect) const {
ctx->fillRect(rect, KDColor(0xFFCD50));
ctx->drawString(m_name, {0,0}, true);
ctx->drawString(m_name, KDPointZero);
}
#if ESCHER_VIEW_LOGGING