diff --git a/qml/AppItem.qml b/qml/AppItem.qml index bad8ca8..bef288f 100644 --- a/qml/AppItem.qml +++ b/qml/AppItem.qml @@ -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()