fix: notification body wraps properly

This commit is contained in:
Nydragon 2024-10-30 14:51:45 +01:00
parent 462e72a364
commit 74caaa8d0e
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -18,36 +18,48 @@ MouseArea {
required property NotificationUrgency urgency required property NotificationUrgency urgency
required property int index required property int index
property var close: () => {
toast.parent.parent.model.remove(toast.index, 1);
}
hoverEnabled: true hoverEnabled: true
height: box.height height: 26
width: box.width width: 200
BRectangle { BRectangle {
id: box id: box
height: 26 anchors.fill: parent
width: 200
BRectangle { Column {
anchors.fill: parent anchors.fill: parent
anchors.margins: 5
Column { Row {
anchors.fill: parent Layout.fillWidth: true
anchors.margins: 5
Row {
IconImage {
source: Quickshell.iconPath(toast.appIcon)
height: 16
visible: toast.appIcon
}
Text { IconImage {
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary source: Quickshell.iconPath(toast.appIcon)
} height: 16
visible: toast.appIcon
} }
Text { Text {
text: toast.body text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
visible: box.state === "expand"
} }
Button {
onClicked: toast.close()
width: 16
height: 16
}
}
Text {
text: toast.body
width: parent.width
visible: box.state === "expand"
wrapMode: Text.Wrap
Layout.fillWidth: true
} }
} }
@ -55,7 +67,7 @@ MouseArea {
name: "expand" name: "expand"
when: toast.containsMouse when: toast.containsMouse
PropertyChanges { PropertyChanges {
target: box target: toast
width: 250 width: 250
height: 140 height: 140
} }