summary refs log tree commit diff
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@ymail.com>2022-04-24 16:37:35 +0200
committerNicolas Werner <nicolas.werner@ymail.com>2022-04-24 16:37:35 +0200
commitc21711830f2f56ba45ab6632ab254aebb986fb19 (patch)
tree9b9b26cb357050dd2f178bc09cc41371f0a750d9 /resources/qml/TimelineView.qml
parentFix filtering without using regex (diff)
downloadnheko-c21711830f2f56ba45ab6632ab254aebb986fb19.tar.xz
Fix pinned messages getting clipped
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 3f439439..a7bfe1ef 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -207,7 +207,7 @@ Item {
                 image: ":/icons/icons/ui/people.svg"
                 hoverEnabled: true
                 ToolTip.visible: hovered
-                ToolTip.text: qsTr("View members of %1").arg(room.roomName)
+                ToolTip.text: qsTr("View members of %1").arg(room ? room.roomName : "")
                 onClicked: TimelineManager.openRoomMembers(room)
             }