chore: spread actions across multiple lines if > 5

This commit is contained in:
Nydragon 2024-11-25 18:19:40 +01:00
parent e492b0adab
commit 2118e6d73e
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -37,7 +37,7 @@ MouseArea {
BRectangle {
id: box
width: parent.width
height: header.height + toast.actionHeight + bodyBox.height + (5 * 3)
height: header.height + actions.implicitHeight + bodyBox.height + (5 * 3)
clip: true
@ -120,12 +120,13 @@ MouseArea {
}
}
}
RowLayout {
GridLayout {
id: actions
width: parent.width
anchors.top: bodyBox.bottom
anchors.topMargin: 5
anchors.bottomMargin: 5
columns: toast.notif?.actions.length < 6 ? toast.notif?.actions.length : 4
Repeater {
id: rep
model: toast.notif?.actions