diff --git a/imports/Spectral/Component/Timeline/ImageDelegate.qml b/imports/Spectral/Component/Timeline/ImageDelegate.qml index 2d4e472..181f5b8 100644 --- a/imports/Spectral/Component/Timeline/ImageDelegate.qml +++ b/imports/Spectral/Component/Timeline/ImageDelegate.qml @@ -115,7 +115,7 @@ ColumnLayout { maskSource: Rectangle { width: img.width height: img.height - radius: 24 + radius: 6 } } diff --git a/imports/Spectral/Component/Timeline/MessageDelegate.qml b/imports/Spectral/Component/Timeline/MessageDelegate.qml index 154c152..db5ca69 100644 --- a/imports/Spectral/Component/Timeline/MessageDelegate.qml +++ b/imports/Spectral/Component/Timeline/MessageDelegate.qml @@ -80,10 +80,10 @@ ColumnLayout { width: parent.width / 2 height: parent.height / 2 - visible: !sentByMe && (bubbleShape == 3 || bubbleShape == 2) + visible: true color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent - radius: 2 + radius: 5 } Rectangle { @@ -93,10 +93,10 @@ ColumnLayout { width: parent.width / 2 height: parent.height / 2 - visible: sentByMe && (bubbleShape == 3 || bubbleShape == 2) + visible: true color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent - radius: 2 + radius: 5 } Rectangle { @@ -106,10 +106,10 @@ ColumnLayout { width: parent.width / 2 height: parent.height / 2 - visible: !sentByMe && (bubbleShape == 1 || bubbleShape == 2) + visible: true color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent - radius: 2 + radius: 5 } Rectangle { @@ -119,10 +119,10 @@ ColumnLayout { width: parent.width / 2 height: parent.height / 2 - visible: sentByMe && (bubbleShape == 1 || bubbleShape == 2) + visible: true color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent - radius: 2 + radius: 5 } AutoMouseArea {