diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-16 12:09:30 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-16 12:09:30 -0400 |
commit | b1e14103f9640e94821133c7ca641d2ecb6ae812 (patch) | |
tree | 4893b27f2bd684b4114b3632442adfcec4676662 /src-qt5/core | |
parent | Another round of small bug fixes/tweaks: (diff) | |
download | lumina-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.cpp | 2 |
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(); |