summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-12-18 05:57:40 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2022-12-18 05:57:40 +0100
commit2a4eac04b9f07915e726b4337b3ad67ad0f1137c (patch)
tree5ad2aaf82c07c531cc67e5f03ed45e7fed98f223 /resources
parentFix weird QQC2 crash in alias dialog (diff)
downloadnheko-2a4eac04b9f07915e726b4337b3ad67ad0f1137c.tar.xz
Fix unread bar size
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/TimelineRow.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml
index eb2406e7..4814d84f 100644
--- a/resources/qml/TimelineRow.qml
+++ b/resources/qml/TimelineRow.qml
@@ -319,9 +319,11 @@ AbstractButton {
         anchors {
             top: reactionRow.bottom
             topMargin: 5
+            left: parent.left
+            right: parent.right
         }
         color: Nheko.colors.highlight
-        width: row.maxWidth
+        
         visible: (r.index > 0 && (room.fullyReadEventId == r.eventId))
         height: visible ? 3 : 0