summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-06-15 15:36:58 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-06-15 15:36:58 +0200
commit3eafd4396e57f15bda517e090b81623c542bd452 (patch)
treea2bd42f29a95d8e9d20de6e65bf324f363428565 /resources/qml
parentFix edits not updating in replies (diff)
downloadnheko-3eafd4396e57f15bda517e090b81623c542bd452.tar.xz
Fix pins not refreshing after being loaded
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/TopBar.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml

index 20eff7f3..c9d26019 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml
@@ -271,7 +271,12 @@ Pane { height: implicitHeight Reply { - property var e: room ? room.getDump(modelData, "") : {} + id: reply + property var e: room ? room.getDump(modelData, "pins") : {} + Connections { + function onPinnedMessagesChanged() { reply.e = room.getDump(modelData, "pins") } + target: room + } Layout.fillWidth: true Layout.preferredHeight: height