* disable channel Logo label when no Channel is selected

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1665 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-09-19 21:13:33 +00:00
parent 4e4d0cb54a
commit 933f76d724

View File

@ -626,9 +626,12 @@ void ChannelFeed::updateChannelMsgs()
subscribeButton->setEnabled(false); subscribeButton->setEnabled(false);
unsubscribeButton->setEnabled(false); unsubscribeButton->setEnabled(false);
nameLabel->setText("No Channel Selected"); nameLabel->setText("No Channel Selected");
iconLabel->setEnabled(false);
return; return;
} }
iconLabel->setEnabled(true);
/* set textcolor for Channel name */ /* set textcolor for Channel name */
QString channelStr("<span style=\"font-size:22pt; font-weight:500;" QString channelStr("<span style=\"font-size:22pt; font-weight:500;"
"color:#4F4F4F;\">%1</span>"); "color:#4F4F4F;\">%1</span>");