mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-03 20:32:07 -04:00
fix: missing appID references
This commit is contained in:
@@ -990,7 +990,7 @@ BasePill {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
const shouldHidePin = modelData.appId === "org.quickshell";
|
const shouldHidePin = modelData.appId === "org.quickshell" || modelData.appId === "com.danklinux.dms";
|
||||||
const moddedId = Paths.moddedAppId(modelData.appId);
|
const moddedId = Paths.moddedAppId(modelData.appId);
|
||||||
const desktopEntry = moddedId ? DesktopEntries.heuristicLookup(moddedId) : null;
|
const desktopEntry = moddedId ? DesktopEntries.heuristicLookup(moddedId) : null;
|
||||||
|
|
||||||
|
|||||||
@@ -550,7 +550,7 @@ BasePill {
|
|||||||
mipmap: true
|
mipmap: true
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
visible: status === Image.Ready
|
visible: status === Image.Ready
|
||||||
layer.enabled: appId === "org.quickshell"
|
layer.enabled: appId === "org.quickshell" || appId === "com.danklinux.dms"
|
||||||
layer.smooth: true
|
layer.smooth: true
|
||||||
layer.mipmap: true
|
layer.mipmap: true
|
||||||
layer.effect: MultiEffect {
|
layer.effect: MultiEffect {
|
||||||
|
|||||||
@@ -286,7 +286,7 @@ Item {
|
|||||||
const key = isActiveWs || !SettingsData.groupWorkspaceApps ? `${moddedId}_${i}` : moddedId;
|
const key = isActiveWs || !SettingsData.groupWorkspaceApps ? `${moddedId}_${i}` : moddedId;
|
||||||
|
|
||||||
if (!byApp[key]) {
|
if (!byApp[key]) {
|
||||||
const isQuickshell = keyBase === "org.quickshell";
|
const isQuickshell = keyBase === "org.quickshell" || keyBase === "com.danklinux.dms";
|
||||||
const isSteamApp = Paths.isSteamApp(moddedId);
|
const isSteamApp = Paths.isSteamApp(moddedId);
|
||||||
const desktopEntry = DesktopEntries.heuristicLookup(moddedId);
|
const desktopEntry = DesktopEntries.heuristicLookup(moddedId);
|
||||||
const icon = Paths.getAppIcon(moddedId, desktopEntry);
|
const icon = Paths.getAppIcon(moddedId, desktopEntry);
|
||||||
|
|||||||
Reference in New Issue
Block a user