Renamed Icons.qml to AppIcons.qml for clarity

This commit is contained in:
LemmyCook 2025-09-09 14:16:37 -04:00
parent 4f731b67d1
commit b1f9609cd3
6 changed files with 7 additions and 7 deletions

View file

@ -51,7 +51,7 @@ RowLayout {
if (focusedWindow && focusedWindow.appId) {
const idValue = focusedWindow.appId
const normalizedId = (typeof idValue === 'string') ? idValue : String(idValue)
return Icons.iconForAppId(normalizedId.toLowerCase())
return AppIcons.iconForAppId(normalizedId.toLowerCase())
}
// Fallback to ToplevelManager
@ -60,7 +60,7 @@ RowLayout {
if (activeToplevel.appId) {
const idValue2 = activeToplevel.appId
const normalizedId2 = (typeof idValue2 === 'string') ? idValue2 : String(idValue2)
return Icons.iconForAppId(normalizedId2.toLowerCase())
return AppIcons.iconForAppId(normalizedId2.toLowerCase())
}
}

View file

@ -56,7 +56,7 @@ Rectangle {
anchors.centerIn: parent
width: Style.marginL * root.scaling
height: Style.marginL * root.scaling
source: Icons.iconForAppId(taskbarItem.modelData.appId)
source: AppIcons.iconForAppId(taskbarItem.modelData.appId)
smooth: true
}
}