diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-11-21 01:18:55 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-11-21 01:18:55 +0100 |
commit | 5df47c4b4ab3f0a7d4620842d28321b4d18e2897 (patch) | |
tree | 882d8c49eb5dccfcd1926f9aed5cb0806dfc7a69 /resources/qml/delegates | |
parent | Add some padding between scrollbar and messages (diff) | |
download | nheko-5df47c4b4ab3f0a7d4620842d28321b4d18e2897.tar.xz |
Make reply background a bit less saturated
Diffstat (limited to 'resources/qml/delegates')
-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 1471dbdf..fe2fe23f 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml @@ -66,7 +66,7 @@ Item { z: -1 height: replyContainer.height width: Math.min(Math.max(reply.implicitWidth, userName.implicitWidth) + 8 + 4, parent.width) - color: Qt.rgba(userColor.r, userColor.g, userColor.b, 0.2) + color: Qt.rgba(userColor.r, userColor.g, userColor.b, 0.1) } } |