* added for expandButtons correct hide/show icons + ToolTips

* added some Vertikal Spacer to put each new Widget on Top for News Feed
* added icons for typeComboBox

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@697 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2008-08-17 14:13:09 +00:00
parent 0626a08d01
commit c4a3792500
8 changed files with 90 additions and 56 deletions

View file

@ -134,10 +134,14 @@ void ForumNewItem::toggle()
if (expandFrame->isHidden())
{
expandFrame->show();
expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
expandButton->setToolTip("Hide");
}
else
{
expandFrame->hide();
expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
expandButton->setToolTip("Expand");
}
}