set default Font size for Channel Title Name

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1635 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-09-12 02:15:00 +00:00
parent 72e3525b91
commit 656380415d
2 changed files with 6 additions and 1 deletions

View File

@ -118,6 +118,9 @@ ChannelFeed::ChannelFeed(QWidget *parent)
updateChannelList(); updateChannelList();
mChannelFont = QFont("MS SANS SERIF", 24);
nameLabel->setFont(mChannelFont);
QTimer *timer = new QTimer(this); QTimer *timer = new QTimer(this);
timer->connect(timer, SIGNAL(timeout()), this, SLOT(checkUpdate())); timer->connect(timer, SIGNAL(timeout()), this, SLOT(checkUpdate()));
timer->start(1000); timer->start(1000);

View File

@ -91,6 +91,8 @@ private:
std::list<ChanMsgItem *> mChanMsgItems; std::list<ChanMsgItem *> mChanMsgItems;
QFont mChannelFont;
}; };