aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LDesktop.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-14 16:01:39 -0400
committerKen Moore <ken@pcbsd.org>2014-10-14 16:01:39 -0400
commit6c491c85494cdcbc750491817b68396775e9b04e (patch)
tree2c3ac506fd02e73bef5240a06a648ec6f5dc03dc /lumina-desktop/LDesktop.cpp
parentLarge update to the Lumina project: provide full theming capabilities. (diff)
downloadlumina-6c491c85494cdcbc750491817b68396775e9b04e.tar.gz
lumina-6c491c85494cdcbc750491817b68396775e9b04e.tar.bz2
lumina-6c491c85494cdcbc750491817b68396775e9b04e.zip
Finish up the rest of the new Lumina Theme engine and the utilities for editing those themes in lumina-config. Also tag Lumina version 0.7.0 with this change.
Diffstat (limited to 'lumina-desktop/LDesktop.cpp')
-rw-r--r--lumina-desktop/LDesktop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp
index 9751c487..81d57cb8 100644
--- a/lumina-desktop/LDesktop.cpp
+++ b/lumina-desktop/LDesktop.cpp
@@ -48,7 +48,7 @@ LDesktop::LDesktop(int deskNum) : QObject(){
bgDesktop = new QMdiArea(bgWindow);
//Make sure the desktop area is transparent to show the background
bgDesktop->setBackground( QBrush(Qt::NoBrush) );
- bgDesktop->setStyleSheet( "QMdiArea{ border: none; }" );
+ bgDesktop->setStyleSheet( "QMdiArea{ border: none; background: transparent;}" );
//Start the update processes
QTimer::singleShot(1,this, SLOT(UpdateMenu()) );
bgstack15