aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/WMProcess.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-30 14:29:32 -0400
committerKen Moore <ken@pcbsd.org>2014-10-30 14:29:32 -0400
commit10aa0b0ffb77023f3828486aeefcdfbf91cca7b7 (patch)
tree569ecdaaab76abfa603856b9280b0a02db70e811 /lumina-desktop/WMProcess.cpp
parentFor the system tray, only have it make changes when doing the whole check: do... (diff)
downloadlumina-10aa0b0ffb77023f3828486aeefcdfbf91cca7b7.tar.gz
lumina-10aa0b0ffb77023f3828486aeefcdfbf91cca7b7.tar.bz2
lumina-10aa0b0ffb77023f3828486aeefcdfbf91cca7b7.zip
Large quality of life update to Lumina:
1) Fix up the applauncher desktop plugins so that the initial sizing is sane. 2) Completely remove all global static variables from the session. 3) Re-enable the login/logout chimes (works properly without static variables) 4) Streamline the desktop background rotation algorithms a bit. 5) Greatly streamline the Session start procedure (50% to 75% faster on my computer here) 6) Make sure the background wallpaper does not rotate every time the desktop settings file changes (only when the backgrounds for that desktop are changed, or the rotation timer goes off)
Diffstat (limited to 'lumina-desktop/WMProcess.cpp')
-rw-r--r--lumina-desktop/WMProcess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/WMProcess.cpp b/lumina-desktop/WMProcess.cpp
index b916cb8a..41cfb2bd 100644
--- a/lumina-desktop/WMProcess.cpp
+++ b/lumina-desktop/WMProcess.cpp
@@ -56,7 +56,7 @@ bool WMProcess::isRunning(){
}
QString WMProcess::setupWM(){
- QString WM = LSession::sessionSettings()->value("WindowManager", "fluxbox").toString();
+ QString WM = LSession::handle()->sessionSettings()->value("WindowManager", "fluxbox").toString();
QString cmd="echo WM Disabled";
//leave the option to add other window managers here (for testing purposes)
if(WM=="openbox"){
bgstack15