chore: spread actions across multiple lines if > 5
This commit is contained in:
parent
e492b0adab
commit
2118e6d73e
1 changed files with 3 additions and 2 deletions
|
@ -37,7 +37,7 @@ MouseArea {
|
||||||
BRectangle {
|
BRectangle {
|
||||||
id: box
|
id: box
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: header.height + toast.actionHeight + bodyBox.height + (5 * 3)
|
height: header.height + actions.implicitHeight + bodyBox.height + (5 * 3)
|
||||||
|
|
||||||
clip: true
|
clip: true
|
||||||
|
|
||||||
|
@ -120,12 +120,13 @@ MouseArea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
RowLayout {
|
GridLayout {
|
||||||
id: actions
|
id: actions
|
||||||
width: parent.width
|
width: parent.width
|
||||||
anchors.top: bodyBox.bottom
|
anchors.top: bodyBox.bottom
|
||||||
anchors.topMargin: 5
|
anchors.topMargin: 5
|
||||||
anchors.bottomMargin: 5
|
anchors.bottomMargin: 5
|
||||||
|
columns: toast.notif?.actions.length < 6 ? toast.notif?.actions.length : 4
|
||||||
Repeater {
|
Repeater {
|
||||||
id: rep
|
id: rep
|
||||||
model: toast.notif?.actions
|
model: toast.notif?.actions
|
||||||
|
|
Loading…
Add table
Reference in a new issue