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

Merge pull request #7 from F1ynn/master

Fixed status image alignment
This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-06-27 19:47:29 +02:00
commit 12886f1c45
8 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 378 B

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 878 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 B

After

Width:  |  Height:  |  Size: 360 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 288 B

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 790 B

View File

@ -91,7 +91,7 @@ void FriendWidget::setAsInactiveChatroom()
pal2.setColor(QPalette::WindowText,Qt::white); pal2.setColor(QPalette::WindowText,Qt::white);
name.setPalette(pal2); name.setPalette(pal2);
QPalette pal3; QPalette pal3;
pal3.setColor(QPalette::Background, QColor(63,63,63,255)); pal3.setColor(QPalette::Background, QColor(65,65,65,255));
this->setPalette(pal3); this->setPalette(pal3);
avatar.setPixmap(QPixmap("img/contact list icons/contact.png")); avatar.setPixmap(QPixmap("img/contact list icons/contact.png"));
} }

View File

@ -104,7 +104,7 @@ void GroupWidget::setAsInactiveChatroom()
pal2.setColor(QPalette::WindowText,Qt::white); pal2.setColor(QPalette::WindowText,Qt::white);
name.setPalette(pal2); name.setPalette(pal2);
QPalette pal3; QPalette pal3;
pal3.setColor(QPalette::Background, QColor(63,63,63,255)); pal3.setColor(QPalette::Background, QColor(65,65,65,255));
this->setPalette(pal3); this->setPalette(pal3);
avatar.setPixmap(QPixmap("img/contact list icons/group_2x.png")); avatar.setPixmap(QPixmap("img/contact list icons/group_2x.png"));
} }