diff options
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){ |