fix: notification body wraps properly
This commit is contained in:
parent
462e72a364
commit
74caaa8d0e
1 changed files with 32 additions and 20 deletions
|
@ -18,22 +18,25 @@ MouseArea {
|
|||
required property NotificationUrgency urgency
|
||||
required property int index
|
||||
|
||||
hoverEnabled: true
|
||||
height: box.height
|
||||
width: box.width
|
||||
property var close: () => {
|
||||
toast.parent.parent.model.remove(toast.index, 1);
|
||||
}
|
||||
|
||||
BRectangle {
|
||||
id: box
|
||||
hoverEnabled: true
|
||||
height: 26
|
||||
width: 200
|
||||
|
||||
BRectangle {
|
||||
id: box
|
||||
anchors.fill: parent
|
||||
|
||||
Column {
|
||||
anchors.fill: parent
|
||||
anchors.margins: 5
|
||||
|
||||
Row {
|
||||
Layout.fillWidth: true
|
||||
|
||||
IconImage {
|
||||
source: Quickshell.iconPath(toast.appIcon)
|
||||
height: 16
|
||||
|
@ -43,11 +46,20 @@ MouseArea {
|
|||
Text {
|
||||
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
||||
}
|
||||
|
||||
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"
|
||||
when: toast.containsMouse
|
||||
PropertyChanges {
|
||||
target: box
|
||||
target: toast
|
||||
width: 250
|
||||
height: 140
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue