Browse Source

Merge pull request #7 from F1ynn/master

Fixed status image alignment
pull/9/merge
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
12886f1c45
  1. BIN
      img/status/dot_away.png
  2. BIN
      img/status/dot_away_notification.png
  3. BIN
      img/status/dot_idle.png
  4. BIN
      img/status/dot_idle_notification.png
  5. BIN
      img/status/dot_online.png
  6. BIN
      img/status/dot_online_notification.png
  7. 2
      widget/friendwidget.cpp
  8. 2
      widget/groupwidget.cpp

BIN
img/status/dot_away.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 378 B

After

Width:  |  Height:  |  Size: 367 B

BIN
img/status/dot_away_notification.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 878 B

BIN
img/status/dot_idle.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 B

After

Width:  |  Height:  |  Size: 360 B

BIN
img/status/dot_idle_notification.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 825 B

BIN
img/status/dot_online.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 288 B

After

Width:  |  Height:  |  Size: 277 B

BIN
img/status/dot_online_notification.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 790 B

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