aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LDesktop.cpp
diff options
context:
space:
mode:
authorChristopher Roy Bratusek <nano@jpberlin.de>2014-10-07 19:02:43 +0200
committerChristopher Roy Bratusek <nano@jpberlin.de>2014-10-07 19:02:43 +0200
commit91cbfe642b48aba712f4f60a827bfbef80aca125 (patch)
tree29b0b5be3a0eb0b3e53d144bf6ee1e1ab460aa86 /lumina-desktop/LDesktop.cpp
parentClean up the new global.h usage in all the Lumina subprojects. (diff)
downloadlumina-91cbfe642b48aba712f4f60a827bfbef80aca125.tar.gz
lumina-91cbfe642b48aba712f4f60a827bfbef80aca125.tar.bz2
lumina-91cbfe642b48aba712f4f60a827bfbef80aca125.zip
make file-manager user-chooseable
Diffstat (limited to 'lumina-desktop/LDesktop.cpp')
-rw-r--r--lumina-desktop/LDesktop.cpp3
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){
bgstack15