changed icons on othe feeds too

* changed the icons on other feeds too
* Show on Forum Message Feed the Avatars
This commit is contained in:
defnax 2019-10-09 18:06:30 +02:00
parent 98f35cf8af
commit 2df4a1a3e8
53 changed files with 1120 additions and 741 deletions

View file

@ -236,7 +236,7 @@ void MsgItem::doExpand(bool open)
if (open)
{
expandFrame->show();
expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
expandButton->setIcon(QIcon(QString(":/icons/png/up-arrow.png")));
expandButton->setToolTip(tr("Hide"));
mCloseOnRead = false;
@ -246,7 +246,7 @@ void MsgItem::doExpand(bool open)
else
{
expandFrame->hide();
expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
expandButton->setIcon(QIcon(QString(":/icons/png/down-arrow.png")));
expandButton->setToolTip(tr("Expand"));
}