diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-02-20 20:51:07 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-02-20 20:51:07 +0100 |
commit | 6bdc75d07319b3b2a846ee4a905288ec0d9371f6 (patch) | |
tree | 855cd92fb12a652f9959d0a1e64b15db82ba3e79 /resources/qml/delegates/Reply.qml | |
parent | Clear user colors on theme change (diff) | |
download | nheko-6bdc75d07319b3b2a846ee4a905288ec0d9371f6.tar.xz |
Reset user colors on theme change (in qml timeline)
Diffstat (limited to 'resources/qml/delegates/Reply.qml')
-rw-r--r-- | resources/qml/delegates/Reply.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml index a1ddc8f0..8bb9ed38 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml @@ -19,7 +19,7 @@ Rectangle { anchors.bottom: replyContainer.bottom width: 4 - color: chat.model ? chat.model.userColor(reply.modelData.userId, colors.window) : colors.window + color: timelineManager.userColor(reply.modelData.userId, colors.window) } Column { |