diff options
author | Ken Moore <ken@pcbsd.org> | 2014-10-30 14:29:32 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-10-30 14:29:32 -0400 |
commit | 10aa0b0ffb77023f3828486aeefcdfbf91cca7b7 (patch) | |
tree | 569ecdaaab76abfa603856b9280b0a02db70e811 /lumina-desktop/WMProcess.cpp | |
parent | For the system tray, only have it make changes when doing the whole check: do... (diff) | |
download | lumina-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.cpp | 2 |
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"){ |