SystemDialog: Strip trailing whitespace (automatic change)

This commit is contained in:
ivan tkachenko 2024-02-20 22:31:39 +06:00
parent d3fc0cf3ef
commit ec37300c9e
No known key found for this signature in database
GPG key ID: AF72731B7C654CB3

View file

@ -14,39 +14,39 @@ import "private" as Private
Item {
id: root
default property Item mainItem
/**
* Title of the dialog.
*/
property string mainText: ""
/**
* Subtitle of the dialog.
*/
property string subtitle: ""
/**
* This property holds the default padding of the content.
*/
property real padding: Kirigami.Units.smallSpacing
/**
* This property holds the left padding of the content. If not specified, it uses `padding`.
*/
property real leftPadding: padding
/**
* This property holds the right padding of the content. If not specified, it uses `padding`.
*/
property real rightPadding: padding
/**
* This property holds the top padding of the content. If not specified, it uses `padding`.
*/
property real topPadding: padding
/**
* This property holds the bottom padding of the content. If not specified, it uses `padding`.
*/
@ -127,7 +127,7 @@ Item {
}
}
}
readonly property var contents: ColumnLayout {
id: column
spacing: 0