mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 21:42:51 -05:00
fix: Workspace padding settings
This commit is contained in:
@@ -277,7 +277,11 @@ Item {
|
|||||||
|
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
implicitSize: 40
|
implicitSize: 40
|
||||||
source: appData.appId !== "__SEPARATOR__" ? Quickshell.iconPath(DesktopEntries.byId(Paths.moddedAppId(appData.appId)).icon, true) : ""
|
source: {
|
||||||
|
if (appData.appId === "__SEPARATOR__") return ""
|
||||||
|
var desktopEntry = DesktopEntries.byId(Paths.moddedAppId(appData.appId))
|
||||||
|
return desktopEntry && desktopEntry.icon ? Quickshell.iconPath(desktopEntry.icon, true) : ""
|
||||||
|
}
|
||||||
mipmap: true
|
mipmap: true
|
||||||
smooth: true
|
smooth: true
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
|
|||||||
@@ -252,8 +252,14 @@ Rectangle {
|
|||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
text: {
|
text: {
|
||||||
if (CompositorService.isHyprland) {
|
if (CompositorService.isHyprland) {
|
||||||
|
if (modelData && modelData.id === -1) {
|
||||||
|
return index + 1
|
||||||
|
}
|
||||||
return modelData && modelData.id ? modelData.id : ""
|
return modelData && modelData.id ? modelData.id : ""
|
||||||
}
|
}
|
||||||
|
if (modelData === -1) {
|
||||||
|
return index + 1
|
||||||
|
}
|
||||||
return modelData - 1
|
return modelData - 1
|
||||||
}
|
}
|
||||||
color: isActive ? Qt.rgba(
|
color: isActive ? Qt.rgba(
|
||||||
|
|||||||
Reference in New Issue
Block a user