aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-open/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-08 16:17:29 -0400
committerKen Moore <moorekou@gmail.com>2016-06-08 16:17:29 -0400
commitbef675d06c3014a76073027368bd96138be4bb1d (patch)
tree4841e6a1394f7f189fded1577715597292b40326 /src-qt5/core/lumina-open/main.cpp
parentUpdate lumina-xconfig (and lumina-session) so that it saves/reloads the previ... (diff)
downloadlumina-bef675d06c3014a76073027368bd96138be4bb1d.tar.gz
lumina-bef675d06c3014a76073027368bd96138be4bb1d.tar.bz2
lumina-bef675d06c3014a76073027368bd96138be4bb1d.zip
Fix a bug with detecting/using KDE applications as the defaults for particular mimetypes.
Diffstat (limited to 'src-qt5/core/lumina-open/main.cpp')
-rw-r--r--src-qt5/core/lumina-open/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-open/main.cpp b/src-qt5/core/lumina-open/main.cpp
index a323e075..7011b2e1 100644
--- a/src-qt5/core/lumina-open/main.cpp
+++ b/src-qt5/core/lumina-open/main.cpp
@@ -101,6 +101,7 @@ QString cmdFromUser(int argc, char **argv, QString inFile, QString extension, QS
//qDebug() << "Matches:" << matches;
for(int i=0; i<matches.length(); i++){
defApp = LXDG::findDefaultAppForMime(matches[i]);
+ //qDebug() << "MimeType:" << matches[i] << defApp;
if(!defApp.isEmpty()){ extension = matches[i]; break; }
else if(i+1==matches.length()){ extension = matches[0]; }
}
bgstack15