From 2118e6d73e2adc8e4406d09b1d5c147d0d1c42ad Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 25 Nov 2024 18:19:40 +0100 Subject: [PATCH] chore: spread actions across multiple lines if > 5 --- src/widgets/notifications/NotificationToast.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/widgets/notifications/NotificationToast.qml b/src/widgets/notifications/NotificationToast.qml index 098feef..2849baa 100644 --- a/src/widgets/notifications/NotificationToast.qml +++ b/src/widgets/notifications/NotificationToast.qml @@ -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