1 files changed, 15 insertions, 0 deletions
diff --git a/resources/qml/delegates/Redacted.qml b/resources/qml/delegates/Redacted.qml
new file mode 100644
index 00000000..53e95a83
--- /dev/null
+++ b/resources/qml/delegates/Redacted.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.5
+import QtQuick.Controls 2.5
+
+Label {
+ text: qsTr("redacted")
+ color: inactiveColors.text
+ horizontalAlignment: Text.AlignHCenter
+
+ height: contentHeight * 1.2
+ width: contentWidth * 1.2
+ background: Rectangle {
+ radius: parent.height / 2
+ color: colors.dark
+ }
+}
|