nosignal-shell/modules/notifications/Wrapper.qml
2 * r + 2 * t dc1b01ccd3 notifs: fix opening anim when spam notifs
No open/close state, just animate height
2025-05-29 23:37:02 +08:00

14 lines
234 B
QML

import "root:/config"
import QtQuick
Item {
id: root
visible: height > 0
implicitHeight: content.implicitHeight
implicitWidth: content.implicitWidth + BorderConfig.rounding
Content {
id: content
}
}