mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-21 21:55:15 -05:00
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:
parent
72e3525b91
commit
656380415d
@ -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);
|
||||
|
@ -90,6 +90,8 @@ private:
|
||||
std::list<ChanMenuItem *> mChannelListOther;
|
||||
|
||||
std::list<ChanMsgItem *> mChanMsgItems;
|
||||
|
||||
QFont mChannelFont;
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user