set default textcolor for channel items

set default Font for Forum items

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1655 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-09-16 00:01:09 +00:00
parent a7c1b9f31c
commit 8b7045f1c2
3 changed files with 14 additions and 0 deletions

View file

@ -166,6 +166,12 @@ ChannelFeed::ChannelFeed(QWidget *parent)
item2->setFont(itemFont);
item3->setFont(itemFont);
item4->setFont(itemFont);
item1->setForeground(QBrush(QColor(79, 79, 79)));
item2->setForeground(QBrush(QColor(79, 79, 79)));
item3->setForeground(QBrush(QColor(79, 79, 79)));
item4->setForeground(QBrush(QColor(79, 79, 79)));
QTimer *timer = new QTimer(this);
timer->connect(timer, SIGNAL(timeout()), this, SLOT(checkUpdate()));