1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/dialogs/ReadReceipts.qml b/resources/qml/dialogs/ReadReceipts.qml
index 83b8b8af..523b47cb 100644
--- a/resources/qml/dialogs/ReadReceipts.qml
+++ b/resources/qml/dialogs/ReadReceipts.qml
@@ -91,7 +91,7 @@ ApplicationWindow {
Layout.fillWidth: true
ElidedLabel {
- text: model.displayName
+ fullText: model.displayName
color: TimelineManager.userColor(model ? model.mxid : "", palette.window)
font.pointSize: fontMetrics.font.pointSize
elideWidth: del.width - Nheko.paddingMedium - avatar.width
@@ -99,7 +99,7 @@ ApplicationWindow {
}
ElidedLabel {
- text: model.timestamp
+ fullText: model.timestamp
color: palette.buttonText
font.pointSize: fontMetrics.font.pointSize * 0.9
elideWidth: del.width - Nheko.paddingMedium - avatar.width
|