1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 09:04:33 +02:00

* Make boxes entirely transparent.

This commit is contained in:
Christian Muehlhaeuser
2013-06-13 11:40:39 +02:00
parent b25cc538f7
commit 11d41419d9

View File

@@ -164,9 +164,8 @@ TomahawkStyle::drawArrow( QStyle::PrimitiveElement element, QPainter* p, const Q
void
TomahawkStyle::stylePageFrame( QFrame* frame )
{
frame->setStyleSheet( QString( "QFrame#%1 { background-color: %2; border: 1px solid white; border-radius: 3px; }" )
.arg( frame->objectName() )
.arg( TomahawkStyle::PAGE_ITEM_BACKGROUND.name() ) );
frame->setStyleSheet( QString( "QFrame#%1 { background-color: transparent; border: 0px solid white; border-radius: 0px; }" )
.arg( frame->objectName() ) );
}