From 991fa4ac98b0d2e8b7f7348146dd36e4ac444f4f Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Thu, 7 May 2020 22:22:41 -0400 Subject: [PATCH] Change redaction color that accidentally got committed --- resources/qml/delegates/Pill.qml | 6 +----- 1 file changed, 1 insertion(+), 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 } - }