1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Use darker gray for own messages

Fixes #51

I hope you're happy, platos
This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-07-02 11:57:10 +02:00
parent 2e2e61962d
commit 0ffbbe17cc

View File

@ -226,7 +226,7 @@ void ChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date)
if (author->text() == Widget::getInstance()->getUsername())
{
QPalette pal;
pal.setColor(QPalette::WindowText, Qt::gray);
pal.setColor(QPalette::WindowText, QColor(100,100,100));
author->setPalette(pal);
message->setPalette(pal);
}