diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2020-05-07 22:20:25 -0400 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2020-05-07 22:20:25 -0400 |
commit | cc921613394c6acc5ce1b7ec6376ab026185543e (patch) | |
tree | b5042137900a58b6b0be5b5e9b4211d2d176c426 /resources | |
parent | Merge pull request #192 from Nheko-Reborn/reactions (diff) | |
download | nheko-cc921613394c6acc5ce1b7ec6376ab026185543e.tar.xz |
Fix redaction color change that accidentally got committed
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/delegates/Pill.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/delegates/Pill.qml b/resources/qml/delegates/Pill.qml index c4260c33..dbf0e5f6 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 } + } |