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

fix(widget): Fix status pic alignment

This commit is contained in:
Anthony Bilinski 2018-02-20 23:11:29 -08:00
parent b48df03ede
commit d9118cfc71
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
2 changed files with 2 additions and 2 deletions

View File

@ -377,7 +377,7 @@ void FriendWidget::updateStatusLight()
Widget::getInstance()->updateFriendActivity(frnd);
}
statusPic.setMargin(event ? 0 : 3);
statusPic.setMargin(event ? 1 : 3);
}
QString FriendWidget::getStatusString() const

View File

@ -183,7 +183,7 @@ void GroupWidget::updateStatusLight()
statusPic.setMargin(3);
} else {
statusPic.setPixmap(QPixmap(":img/status/online_notification.svg"));
statusPic.setMargin(0);
statusPic.setMargin(1);
}
}