Fix app icon geometry

This commit is contained in:
cutefishd 2021-04-20 13:43:06 +08:00
parent 0e30a04a3e
commit 65ad364fef

View file

@ -15,6 +15,16 @@ DockItem {
draggable: model.appId === "cutefish-launcher" ? false : true
dragItemIndex: index
onXChanged: {
if (windowCount > 0)
updateGeometry()
}
onYChanged: {
if (windowCount > 0)
updateGeometry()
}
onWindowCountChanged: {
if (windowCount > 0)
updateGeometry()