From cc921613394c6acc5ce1b7ec6376ab026185543e Mon Sep 17 00:00:00 2001
From: Joseph Donofry <joedonofry@gmail.com>
Date: Thu, 7 May 2020 22:20:25 -0400
Subject: [PATCH] Fix redaction color change that accidentally got committed

---
 resources/qml/delegates/Pill.qml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/resources/qml/delegates/Pill.qml b/resources/qml/delegates/Pill.qml
index c4260c33e..dbf0e5f61 100644
--- a/resources/qml/delegates/Pill.qml
+++ b/resources/qml/delegates/Pill.qml
@@ -5,11 +5,11 @@ Label {
 	color: colors.brightText
 	horizontalAlignment: Text.AlignHCenter
 
-    height: fontMetrics.height * 1.4
-    width: contentWidth * 1.2
-
+	height: contentHeight * 1.2
+	width: contentWidth * 1.2
 	background: Rectangle {
 		radius: parent.height / 2
 		color: colors.dark
 	}
+
 }
-- 
GitLab