Fix unread bar size

pull/1253/head
Nicolas Werner 2 years ago
parent 2ac3be1a18
commit 2a4eac04b9
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
  1. 4
      resources/qml/TimelineRow.qml

@ -319,9 +319,11 @@ AbstractButton {
anchors { anchors {
top: reactionRow.bottom top: reactionRow.bottom
topMargin: 5 topMargin: 5
left: parent.left
right: parent.right
} }
color: Nheko.colors.highlight color: Nheko.colors.highlight
width: row.maxWidth
visible: (r.index > 0 && (room.fullyReadEventId == r.eventId)) visible: (r.index > 0 && (room.fullyReadEventId == r.eventId))
height: visible ? 3 : 0 height: visible ? 3 : 0

Loading…
Cancel
Save