aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaXDG.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-07 17:07:13 -0400
committerKen Moore <moorekou@gmail.com>2015-10-07 17:07:13 -0400
commit9fd1372203ef8da796b370e063959c9bab344b1e (patch)
tree3a6c7a5f818487ea4cb1d6e6a8693ade33786ab3 /libLumina/LuminaXDG.cpp
parentReverse the order of items in the startmenu logout page - now they start at t... (diff)
downloadlumina-9fd1372203ef8da796b370e063959c9bab344b1e.tar.gz
lumina-9fd1372203ef8da796b370e063959c9bab344b1e.tar.bz2
lumina-9fd1372203ef8da796b370e063959c9bab344b1e.zip
Another batch of small fixes:
1) Add a new ResizeMenu() class to the LuminaUtils library - this class allows the resulting menu to be resizable by the user clicking on an edge and dragging. 2) In the systemstart panel plugin, reverse the location of the shutdown options on the leave page (put them at the bottom next to where the leave button is in the first place) 3) Setup the systemstart plugin to use the new ResizeMenu. It currently does not save the new size to be used for later sessions, but per-session resizing works fine. 4) Quick adjustment to the systemtray icon sizes 5) Quick fix to the detection of a desktop file removal.
Diffstat (limited to 'libLumina/LuminaXDG.cpp')
-rw-r--r--libLumina/LuminaXDG.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libLumina/LuminaXDG.cpp b/libLumina/LuminaXDG.cpp
index 15cd47fe..3fe533a5 100644
--- a/libLumina/LuminaXDG.cpp
+++ b/libLumina/LuminaXDG.cpp
@@ -421,6 +421,7 @@ QStringList LXDG::systemApplicationDirs(){
//for(int s=0; s<subs.length(); s++){ out << dir.absoluteFilePath(subs[s]); }
}
}
+ //qDebug() << "System Application Dirs:" << out;
return out;
}
bgstack15