From 5a469ed1264246e569d65a53a4d8cb6318cd906d Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sun, 17 Dec 2023 23:28:36 +0100 Subject: [PATCH] Make ReportSheet frameless Similar to https://invent.kde.org/network/neochat/-/merge_requests/1487 --- src/qml/ReportSheet.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/qml/ReportSheet.qml b/src/qml/ReportSheet.qml index a38ba5cb3..b006948a5 100644 --- a/src/qml/ReportSheet.qml +++ b/src/qml/ReportSheet.qml @@ -17,11 +17,20 @@ Kirigami.Page { title: i18n("Report Message") + leftPadding: 0 + rightPadding: 0 + topPadding: 0 + bottomPadding: 0 + QQC2.TextArea { id: reason placeholderText: i18n("Reason for reporting this message") anchors.fill: parent wrapMode: TextEdit.Wrap + + background: Rectangle { + color: Kirigami.Theme.backgroundColor + } } footer: QQC2.ToolBar {