1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

Fix toast width

This commit is contained in:
bbedward
2025-10-06 19:42:22 -04:00
parent 0b11fb2fd5
commit 8ef125bed2
2 changed files with 4 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ PanelWindow {
}
}
width: shouldBeVisible ? (ToastService.hasDetails ? 380 : 350) : frozenWidth
width: Math.min(900, messageText.implicitWidth + statusIcon.width + Theme.spacingM + (ToastService.hasDetails ? (expandButton.width + closeButton.width + 4) : 0) + Theme.spacingL * 2 + Theme.spacingM * 2)
height: toastContent.height + Theme.spacingL * 2
anchors.horizontalCenter: parent.horizontalCenter
y: Theme.barHeight - 4 + SettingsData.dankBarSpacing + 2
@@ -99,7 +99,7 @@ PanelWindow {
Item {
width: parent.width
height: Theme.iconSize + 8
height: Math.max(Theme.iconSize + 8, messageText.implicitHeight)
DankIcon {
id: statusIcon
@@ -146,10 +146,8 @@ PanelWindow {
anchors.left: statusIcon.right
anchors.leftMargin: Theme.spacingM
anchors.verticalCenter: parent.verticalCenter
anchors.right: ToastService.hasDetails ? expandButton.left : closeButton.left
anchors.rightMargin: Theme.spacingM
width: implicitWidth
wrapMode: Text.NoWrap
elide: Text.ElideRight
}
DankActionButton {