mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
SystemDialog: Strip trailing whitespace (automatic change)
This commit is contained in:
parent
d3fc0cf3ef
commit
ec37300c9e
1 changed files with 9 additions and 9 deletions
|
|
@ -14,39 +14,39 @@ import "private" as Private
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
default property Item mainItem
|
default property Item mainItem
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Title of the dialog.
|
* Title of the dialog.
|
||||||
*/
|
*/
|
||||||
property string mainText: ""
|
property string mainText: ""
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Subtitle of the dialog.
|
* Subtitle of the dialog.
|
||||||
*/
|
*/
|
||||||
property string subtitle: ""
|
property string subtitle: ""
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This property holds the default padding of the content.
|
* This property holds the default padding of the content.
|
||||||
*/
|
*/
|
||||||
property real padding: Kirigami.Units.smallSpacing
|
property real padding: Kirigami.Units.smallSpacing
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This property holds the left padding of the content. If not specified, it uses `padding`.
|
* This property holds the left padding of the content. If not specified, it uses `padding`.
|
||||||
*/
|
*/
|
||||||
property real leftPadding: padding
|
property real leftPadding: padding
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This property holds the right padding of the content. If not specified, it uses `padding`.
|
* This property holds the right padding of the content. If not specified, it uses `padding`.
|
||||||
*/
|
*/
|
||||||
property real rightPadding: padding
|
property real rightPadding: padding
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This property holds the top padding of the content. If not specified, it uses `padding`.
|
* This property holds the top padding of the content. If not specified, it uses `padding`.
|
||||||
*/
|
*/
|
||||||
property real topPadding: padding
|
property real topPadding: padding
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This property holds the bottom padding of the content. If not specified, it uses `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 {
|
readonly property var contents: ColumnLayout {
|
||||||
id: column
|
id: column
|
||||||
spacing: 0
|
spacing: 0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue