Show alpha letter instead of "Alpha" text in StatusBar

This commit is contained in:
David Capello 2015-04-06 20:11:41 -03:00
parent 3546f2c0e7
commit 486ab7dfc1

View File

@ -478,7 +478,7 @@ void StatusBar::onPaint(ui::PaintEvent& ev)
app::Color::LongHumanReadableString);
if (m_alpha < 255) {
char buf[256];
sprintf(buf, ", Alpha %d", m_alpha);
sprintf(buf, " \xCE\xB1%d", m_alpha);
str += buf;
}