diff options
author | Ken Moore <ken@pcbsd.org> | 2014-11-14 10:24:54 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-11-14 10:24:54 -0500 |
commit | cc1982b33b4092179f3bad1383bc50e42355ff08 (patch) | |
tree | 300cbe32241ff616c28609b6cd505870aa54f04c | |
parent | Clean up the lumina-fm CLI parsing a bit: (diff) | |
download | lumina-cc1982b33b4092179f3bad1383bc50e42355ff08.tar.gz lumina-cc1982b33b4092179f3bad1383bc50e42355ff08.tar.bz2 lumina-cc1982b33b4092179f3bad1383bc50e42355ff08.zip |
Increase the transparency of the notepad desktop plugin background.
-rw-r--r-- | lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp | 2 |
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 815534d0..ae52378f 100644 --- a/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp +++ b/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp @@ -11,7 +11,7 @@ NotePadPlugin::NotePadPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID) vlay->setContentsMargins(3,3,3,3); frame = new QFrame(this); frame->setObjectName("notepadbase"); - frame->setStyleSheet("QFrame#notepadbase{border-size: 1px; background: rgba(255,255,255,100); color: black;} QFrame{ border: none; border-radius: 3px; background: rgba(255,255,255,100); color: black;}"); + frame->setStyleSheet("QFrame#notepadbase{border-size: 1px; background: rgba(255,255,255,50); color: black;} QFrame{ border: none; border-radius: 3px; background: rgba(255,255,255,100); color: black;}"); this->layout()->addWidget(frame); frame->setLayout(vlay); |