diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-21 11:53:20 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-21 11:53:20 -0500 |
commit | 33a6682d5fc51415f270ebe96989649e8c792c52 (patch) | |
tree | e7bc52410b8d491e71392cc8232691a03fc1e793 /lumina-desktop/AppMenu.cpp | |
parent | Clean up all the dialog usage in the notepad and audioplay desktop plugins. N... (diff) | |
download | lumina-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.cpp | 2 |
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); } |