1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-01 19:18:28 -04:00

notepad: make dentry NoDisplay

This commit is contained in:
bbedward
2026-07-04 17:00:43 -04:00
parent 57a04cf409
commit ea0c235d6e
4 changed files with 29 additions and 14 deletions
@@ -777,8 +777,6 @@ Item {
if (isCategoryFiltered) {
var rawApps = AppSearchService.getAppsInCategory(appCategory);
for (var i = 0; i < rawApps.length; i++) {
if (AppSearchService.isShadowedByCoreApp(rawApps[i]))
continue;
allItems.push(getOrTransformApp(rawApps[i]));
}
// Also include core apps (DMS Settings etc.) that match this category
@@ -1174,8 +1172,6 @@ Item {
var items = [];
for (var i = 0; i < apps.length; i++) {
if (AppSearchService.isShadowedByCoreApp(apps[i]))
continue;
items.push(getOrTransformApp(apps[i]));
}