Change redaction color that accidentally got committed

This commit is contained in:
Joseph Donofry 2020-05-07 22:22:41 -04:00
parent 5b9611dcd3
commit 991fa4ac98
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
1 changed files with 1 additions and 5 deletions

View File

@ -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
}
}