aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-02-03 11:15:34 -0500
committerKen Moore <ken@pcbsd.org>2015-02-03 11:15:34 -0500
commitb47eb6236261a1252c4dd2d70c2a6472735c17c0 (patch)
tree5b83b16fa992c626a8854160988bd193a7318c95 /lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
parentAdd an "apply" button to the lumina-config theme editor. Now the "save" butto... (diff)
downloadlumina-b47eb6236261a1252c4dd2d70c2a6472735c17c0.tar.gz
lumina-b47eb6236261a1252c4dd2d70c2a6472735c17c0.tar.bz2
lumina-b47eb6236261a1252c4dd2d70c2a6472735c17c0.zip
Add the ability to distinguish between desktop plugins that should be transparent/opaque on a plugin-level. This allows for finer control via the theme.
Diffstat (limited to 'lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp')
-rw-r--r--lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp b/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
index af1c78f5..6d4a2b5d 100644
--- a/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
+++ b/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
@@ -7,7 +7,7 @@
#include <QFileDialog>
#include <QInputDialog>
-NotePadPlugin::NotePadPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID){
+NotePadPlugin::NotePadPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID, true){
QVBoxLayout *vlay = new QVBoxLayout();
this->setLayout( new QVBoxLayout() );
this->layout()->setContentsMargins(0,0,0,0);
bgstack15