mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-19 20:01:48 -05:00
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:
parent
50fd6ae8bc
commit
56aa5a3913
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user