* added noskin.qss for use RetroShare without styleesheets

* added for expandButton for the hide/show correct icons/ToolTips
* added for Blogs Comboboxes some usefull icons


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@696 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2008-08-17 10:16:12 +00:00
parent df509a3683
commit 0626a08d01
10 changed files with 83 additions and 12 deletions

View file

@ -129,10 +129,14 @@ void BlogMsgItem::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");
}
}