summary refs log tree commit diff
path: root/resources/qml/delegates
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2020-05-07 22:22:41 -0400
committerJoseph Donofry <joedonofry@gmail.com>2020-05-07 22:22:41 -0400
commit991fa4ac98b0d2e8b7f7348146dd36e4ac444f4f (patch)
tree283c487d774664c59b4af1613da28bee1e894ff5 /resources/qml/delegates
parentMerge branch 'master' into reactions (diff)
downloadnheko-991fa4ac98b0d2e8b7f7348146dd36e4ac444f4f.tar.xz
Change redaction color that accidentally got committed
Diffstat (limited to 'resources/qml/delegates')
-rw-r--r--resources/qml/delegates/Pill.qml6
1 files changed, 1 insertions, 5 deletions
diff --git a/resources/qml/delegates/Pill.qml b/resources/qml/delegates/Pill.qml
index 22677141..27985b58 100644
--- a/resources/qml/delegates/Pill.qml
+++ b/resources/qml/delegates/Pill.qml
@@ -2,9 +2,6 @@ import QtQuick 2.5
 import QtQuick.Controls 2.1
 
 Label {
-	id: pillComponent
-	property color userColor: "red"
-
 	color: colors.brightText
 	horizontalAlignment: Text.AlignHCenter
 
@@ -12,7 +9,6 @@ Label {
 	width: contentWidth * 1.2
 	background: Rectangle {
 		radius: parent.height / 2
-		color: Qt.rgba(userColor.r, userColor.g, userColor.b, 0.2)
+		color: colors.dark
 	}
-
 }