1 files changed, 4 insertions, 3 deletions
diff --git a/resources/qml/dialogs/ReadReceipts.qml b/resources/qml/dialogs/ReadReceipts.qml
index f551bae9..1bfdae84 100644
--- a/resources/qml/dialogs/ReadReceipts.qml
+++ b/resources/qml/dialogs/ReadReceipts.qml
@@ -66,9 +66,6 @@ ApplicationWindow {
hoverEnabled: true
ToolTip.visible: hovered
ToolTip.text: model.mxid
- background: Rectangle {
- color: readReceiptsRoot.color
- }
RowLayout {
id: receiptLayout
@@ -113,6 +110,10 @@ ApplicationWindow {
cursorShape: Qt.PointingHandCursor
}
+ background: Rectangle {
+ color: readReceiptsRoot.color
+ }
+
}
}
|