summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorMalte E <97891689+maltee1@users.noreply.github.com>2022-02-07 22:04:49 +0100
committerGitHub <noreply@github.com>2022-02-07 22:04:49 +0100
commite290f9938a3ab5b31c168a44d59b9064cce18763 (patch)
tree369581f411e66c1085ad2ab8d6f39a116888e4ed /resources/qml
parentadd translations and actually add changes to TimelineModel (diff)
downloadnheko-e290f9938a3ab5b31c168a44d59b9064cce18763.tar.xz
Update resources/qml/delegates/Reply.qml
Co-authored-by: DeepBlueV7.X <nicolas.werner@hotmail.de>
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/delegates/Reply.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml
index f5556c8b..96fa410e 100644
--- a/resources/qml/delegates/Reply.qml
+++ b/resources/qml/delegates/Reply.qml
@@ -134,7 +134,7 @@ Item {
         anchors.fill: replyContainer
         property color userColor: TimelineManager.userColor(userId, Nheko.colors.base)
         property color bgColor: Nheko.colors.base
-        color: Qt.rgba(userColor.r*0.1+bgColor.r*0.9,userColor.g*0.1+bgColor.g*0.9,userColor.b*0.1+bgColor.b*0.9,1) // alpha makes this mix with the bubble color
+        color: Qt.tint(bgColor, Qt.rgba(userColor.r, userColor.g, userColor.b, 0.1))
     }
 
 }