diff options
Diffstat (limited to 'modules/launcher/services/Apps.qml')
| -rw-r--r-- | modules/launcher/services/Apps.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launcher/services/Apps.qml b/modules/launcher/services/Apps.qml index 9f87d50..229bdae 100644 --- a/modules/launcher/services/Apps.qml +++ b/modules/launcher/services/Apps.qml @@ -69,7 +69,7 @@ Searcher { Variants { id: variants - model: [...DesktopEntries.applications.values].sort((a, b) => a.name.localeCompare(b.name)) + model: [...DesktopEntries.applications.values].filter(a => !Config.launcher.hiddenApps.includes(a.id)).sort((a, b) => a.name.localeCompare(b.name)) QtObject { required property DesktopEntry modelData |