Browse Source

Fix background color

pull/7/head
Kevin Flynn 11 years ago
parent
commit
03e3a8428e
  1. 2
      widget/friendwidget.cpp
  2. 2
      widget/groupwidget.cpp

2
widget/friendwidget.cpp

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

2
widget/groupwidget.cpp

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

Loading…
Cancel
Save