From 1c69e1a32fcbbc7484814f81f4d8932072af3afb Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Mon, 11 Apr 2022 09:19:42 -0600 Subject: [PATCH] SystemDialog: re-add removed public properties The minimumHeight: and minimumWidth: properties were removed by mistake in 63b8aa0681df9912c3d139de325bef9ccfe1aea6. This commit re-adds them. --- lookandfeel/contents/systemdialog/SystemDialog.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lookandfeel/contents/systemdialog/SystemDialog.qml b/lookandfeel/contents/systemdialog/SystemDialog.qml index 79fdb6ffd..f94c783ad 100644 --- a/lookandfeel/contents/systemdialog/SystemDialog.qml +++ b/lookandfeel/contents/systemdialog/SystemDialog.qml @@ -27,6 +27,8 @@ Item { property Window window implicitHeight: column.implicitHeight implicitWidth: column.implicitWidth + readonly property real minimumHeight: column.Layout.minimumHeight + readonly property real minimumWidth: column.Layout.minimumWidth readonly property int flags: Qt.Dialog property alias standardButtons: footerButtonBox.standardButtons readonly property int spacing: Kirigami.Units.largeSpacing // standard KDE dialog margins