Commit bf7bfa8f authored by Laurent Aimar's avatar Laurent Aimar

Do not use the lock icon for scrambled stream.

Until a valid icon is designed/found, I used a DRM text label.
parent 8faf1ece
......@@ -360,7 +360,9 @@ void MainInterface::showCryptedLabel( bool b_show )
if( cryptedLabel == NULL )
{
cryptedLabel = new QLabel;
cryptedLabel->setPixmap( QPixmap( ":/lock" ) );
// The lock icon is not the right one for DRM protection/scrambled.
//cryptedLabel->setPixmap( QPixmap( ":/lock" ) );
cryptedLabel->setText( "DRM" );
statusBar()->addWidget( cryptedLabel );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment