aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/AppMenu.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-21 11:53:20 -0500
committerKen Moore <ken@pcbsd.org>2015-01-21 11:53:20 -0500
commit33a6682d5fc51415f270ebe96989649e8c792c52 (patch)
treee7bc52410b8d491e71392cc8232691a03fc1e793 /lumina-desktop/AppMenu.cpp
parentClean up all the dialog usage in the notepad and audioplay desktop plugins. N... (diff)
downloadlumina-33a6682d5fc51415f270ebe96989649e8c792c52.tar.gz
lumina-33a6682d5fc51415f270ebe96989649e8c792c52.tar.bz2
lumina-33a6682d5fc51415f270ebe96989649e8c792c52.zip
Clean up a couple other session options:
1) Fix the "Open Home Dir" option in the application menu. 2) Have the logout window open on the current screen (instead of always the left screen) 3) Hide the logout window when starting the logout procedure.
Diffstat (limited to 'lumina-desktop/AppMenu.cpp')
-rw-r--r--lumina-desktop/AppMenu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/AppMenu.cpp b/lumina-desktop/AppMenu.cpp
index ab8dc4a9..8736b61e 100644
--- a/lumina-desktop/AppMenu.cpp
+++ b/lumina-desktop/AppMenu.cpp
@@ -111,7 +111,7 @@ void AppMenu::launchControlPanel(){
}
void AppMenu::launchFileManager(){
- QString fm = LSession::handle()->sessionSettings()->value("default-filemanager","lumina-fm").toString();
+ QString fm = "lumina-open \""+QDir::homePath()+"\"";
LSession::LaunchApplication(fm);
}
bgstack15