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

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

View File

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