diff options
author | Ken Moore <moorekou@gmail.com> | 2014-10-08 09:16:10 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2014-10-08 09:16:10 -0400 |
commit | 4897f2a844a9901e6278665f83716b3974a5078b (patch) | |
tree | efb98920ebd16cfa9342dd392601a25fa9f12916 /lumina-desktop/LDesktop.cpp | |
parent | Merge pull request #15 from Nanolx/master (diff) | |
parent | make file-manager user-chooseable (diff) | |
download | lumina-4897f2a844a9901e6278665f83716b3974a5078b.tar.gz lumina-4897f2a844a9901e6278665f83716b3974a5078b.tar.bz2 lumina-4897f2a844a9901e6278665f83716b3974a5078b.zip |
Merge pull request #16 from Nanolx/side-work
make file-manager user-chooseable
Diffstat (limited to 'lumina-desktop/LDesktop.cpp')
-rw-r--r-- | lumina-desktop/LDesktop.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp index 22606cf4..a76edb53 100644 --- a/lumina-desktop/LDesktop.cpp +++ b/lumina-desktop/LDesktop.cpp @@ -91,7 +91,8 @@ void LDesktop::SystemTerminal(){ } void LDesktop::SystemFileManager(){ - LSession::LaunchApplication("lumina-fm"); + QString fm = settings->value("default-filemanager","lumina-fm").toString(); + LSession::LaunchApplication(fm); } void LDesktop::SystemApplication(QAction* act){ |