aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-07 12:50:20 -0400
committerKen Moore <moorekou@gmail.com>2015-10-07 12:50:20 -0400
commit6b310daff4fbd1ba9080ea340b3e9cea72770f06 (patch)
tree76b67cf201d1796af4ae845961a4e1ce666e22d7 /lumina-desktop/panel-plugins
parentCommit the 3rd iteration of the desktop plugin container system. (diff)
downloadlumina-6b310daff4fbd1ba9080ea340b3e9cea72770f06.tar.gz
lumina-6b310daff4fbd1ba9080ea340b3e9cea72770f06.tar.bz2
lumina-6b310daff4fbd1ba9080ea340b3e9cea72770f06.zip
Couple more updates for lumina-desktop:
1) Implement the file dropping on the desktop 2) Fix the panel painting routine to ensure the proper "fake" transparency is applied. 3) Add a missing include line in the panel "applauncher" plugin. 4) Fix the initial desktop icon size setting.
Diffstat (limited to 'lumina-desktop/panel-plugins')
-rw-r--r--lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp b/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp
index 5bd7fa96..321970ed 100644
--- a/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp
+++ b/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp
@@ -8,6 +8,7 @@
#include "../../LSession.h"
#include <LuminaXDG.h>
+#include <QInputDialog>
AppLaunchButtonPlugin::AppLaunchButtonPlugin(QWidget *parent, QString id, bool horizontal) : LPPlugin(parent, id, horizontal){
button = new QToolButton(this);
bgstack15