aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/desktopview
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-19 11:17:41 -0500
committerKen Moore <ken@pcbsd.org>2015-01-19 11:17:41 -0500
commit86eb160983ce6d3bdcf8730cea03c21237202f02 (patch)
treea659c9a8477c07d4ec63e16e0e29cded5a871b2c /lumina-desktop/desktop-plugins/desktopview
parentUpdate the themes that are included within Lumina. (diff)
downloadlumina-86eb160983ce6d3bdcf8730cea03c21237202f02.tar.gz
lumina-86eb160983ce6d3bdcf8730cea03c21237202f02.tar.bz2
lumina-86eb160983ce6d3bdcf8730cea03c21237202f02.zip
Update the theming of the Lumina desktop:
1) Now the panel appearance will be set by the theme as well (unless custom appearance set) 2) Now the desktop plugins are themed appropriately as well (background canvas can be set to something, non-transparent plugins can be changed)
Diffstat (limited to 'lumina-desktop/desktop-plugins/desktopview')
-rw-r--r--lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp
index 5575dbd9..ddf504b4 100644
--- a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp
+++ b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp
@@ -18,7 +18,7 @@ DesktopViewPlugin::DesktopViewPlugin(QWidget* parent, QString ID) : LDPlugin(par
list->setSpacing(2);
list->setSelectionBehavior(QAbstractItemView::SelectItems);
list->setSelectionMode(QAbstractItemView::NoSelection);
- list->setStyleSheet( "QListWidget{ background: rgba(255,255,255,50); border: none; border-radius: 3px; color: black;}" );
+ list->setStyleSheet( "QListWidget{ background: transparent; border: none; }" );
list->setIconSize(QSize(64,64));
this->layout()->addWidget(list);
this->setInitialSize(200,300);
bgstack15