From df4eba01913e68e1614de79a0a6c74bbb4dc68d3 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sun, 17 Dec 2023 10:34:46 +0100 Subject: [PATCH] Make the RemoveSheet frameless --- src/qml/RemoveSheet.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/qml/RemoveSheet.qml b/src/qml/RemoveSheet.qml index 18312c633..19c3b4015 100644 --- a/src/qml/RemoveSheet.qml +++ b/src/qml/RemoveSheet.qml @@ -19,11 +19,19 @@ Kirigami.Page { title: userId.length > 0 ? i18n("Remove Messages") : i18n("Remove Message") + leftPadding: 0 + rightPadding: 0 + topPadding: 0 + bottomPadding: 0 + QQC2.TextArea { id: reason placeholderText: userId.length > 0 ? i18n("Reason for removing this user's recent messages") : i18n("Reason for removing this message") anchors.fill: parent wrapMode: TextEdit.Wrap + background: Rectangle { + color: Kirigami.Theme.backgroundColor + } } footer: QQC2.ToolBar {