aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-16 12:09:30 -0400
committerKen Moore <moorekou@gmail.com>2016-06-16 12:09:30 -0400
commitb1e14103f9640e94821133c7ca641d2ecb6ae812 (patch)
tree4893b27f2bd684b4114b3632442adfcec4676662 /src-qt5/core
parentAnother round of small bug fixes/tweaks: (diff)
downloadlumina-b1e14103f9640e94821133c7ca641d2ecb6ae812.tar.gz
lumina-b1e14103f9640e94821133c7ca641d2ecb6ae812.tar.bz2
lumina-b1e14103f9640e94821133c7ca641d2ecb6ae812.zip
Have the lumina-open dialog show applications on the main list which also have the hidden flag set (since this is for using the app to launch something else - these apps are now valid to show).
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/lumina-open/LFileDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-open/LFileDialog.cpp b/src-qt5/core/lumina-open/LFileDialog.cpp
index afc5d296..fbcf007f 100644
--- a/src-qt5/core/lumina-open/LFileDialog.cpp
+++ b/src-qt5/core/lumina-open/LFileDialog.cpp
@@ -163,7 +163,7 @@ void LFileDialog::generateAppList(bool shownetwork){
//Now get the application mimetype for the file extension (if available)
QStringList mimetypes = LXDG::findAppMimeForFile(filePath, true).split("::::"); //use all mimetypes
//Now add all the detected applications
- QHash< QString, QList<XDGDesktop> > hash = LXDG::sortDesktopCats( LXDG::systemDesktopFiles() );
+ QHash< QString, QList<XDGDesktop> > hash = LXDG::sortDesktopCats( LXDG::systemDesktopFiles(false,true) );
QStringList cat = hash.keys();
cat.sort(); //sort alphabetically
ui->combo_apps->clear();
bgstack15