From 11d41419d9918ef0f32fd41c27ea040c46619eff Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 13 Jun 2013 11:40:39 +0200 Subject: [PATCH] * Make boxes entirely transparent. --- src/libtomahawk/utils/TomahawkStyle.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/libtomahawk/utils/TomahawkStyle.cpp b/src/libtomahawk/utils/TomahawkStyle.cpp index 8c304a96e..f70a7cafd 100644 --- a/src/libtomahawk/utils/TomahawkStyle.cpp +++ b/src/libtomahawk/utils/TomahawkStyle.cpp @@ -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() ) ); }