changend textcolor for Channel name Label

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1648 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-09-13 18:47:13 +00:00
parent 50fd6ae8bc
commit 56aa5a3913

View File

@ -615,8 +615,14 @@ void ChannelFeed::updateChannelMsgs()
nameLabel->setText("No Channel Selected");
return;
}
/* set channel name */
nameLabel->setText(QString::fromStdWString(ci.channelName));
/* set textcolor for Channel name */
QString channelStr("<span style=\"font-size:22pt; font-weight:500;"
"color:#4F4F4F;\">%1</span>");
/* set Channel name */
QString cname = QString::fromStdWString(ci.channelName);
nameLabel->setText(channelStr.arg(cname));
/* do buttons */
if (ci.channelFlags & RS_DISTRIB_SUBSCRIBED)