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