diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-07-09 23:15:22 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-07-09 23:15:22 +0200 |
commit | 530c531c4b447a0d3599a74731441f2656374f3f (patch) | |
tree | 4b0abb8ee3b26aa2dc9d7e16c4291cdc92c2c267 /resources | |
parent | Fix parent undefined warning (diff) | |
download | nheko-530c531c4b447a0d3599a74731441f2656374f3f.tar.xz |
WIP: Event Store split out
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/TimelineRow.qml | 2 | ||||
-rw-r--r-- | resources/qml/TimelineView.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml index dfee62dc..e87590f1 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml @@ -45,7 +45,7 @@ MouseArea { // fancy reply, if this is a reply Reply { visible: model.replyTo - modelData: chat.model.getDump(model.replyTo) + modelData: chat.model.getDump(model.replyTo, model.id) userColor: timelineManager.userColor(modelData.userId, colors.window) } diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index f81f5986..fd185bd9 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -353,7 +353,7 @@ Page { anchors.rightMargin: 20 anchors.bottom: parent.bottom - modelData: chat.model ? chat.model.getDump(chat.model.reply) : {} + modelData: chat.model ? chat.model.getDump(chat.model.reply, chat.model.id) : {} userColor: timelineManager.userColor(modelData.userId, colors.window) } |