diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-12-18 05:57:40 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-12-18 05:57:40 +0100 |
commit | 2a4eac04b9f07915e726b4337b3ad67ad0f1137c (patch) | |
tree | 5ad2aaf82c07c531cc67e5f03ed45e7fed98f223 /resources | |
parent | Fix weird QQC2 crash in alias dialog (diff) | |
download | nheko-2a4eac04b9f07915e726b4337b3ad67ad0f1137c.tar.xz |
Fix unread bar size
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/TimelineRow.qml | 4 |
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 |