diff --git a/imports/Spectral/Component/Timeline/FileDelegate.qml b/imports/Spectral/Component/Timeline/FileDelegate.qml index 1fa994c..b1f26dd 100644 --- a/imports/Spectral/Component/Timeline/FileDelegate.qml +++ b/imports/Spectral/Component/Timeline/FileDelegate.qml @@ -106,10 +106,10 @@ RowLayout { 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 { @@ -119,10 +119,10 @@ RowLayout { 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 { @@ -132,10 +132,10 @@ RowLayout { 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 { @@ -145,10 +145,10 @@ RowLayout { 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 {