chore(StatusScrollView): remove unused background property

BREAKING CHANGE: removes the background property of the StatusScrollView
This commit is contained in:
Jonathan Rainville 2022-07-25 15:06:16 -04:00
parent 64ec74117d
commit 08c53e2f52
1 changed files with 0 additions and 8 deletions

View File

@ -37,17 +37,9 @@ Flickable {
property int leftPadding: padding
property int rightPadding: padding
property Item background: null
readonly property int availableWidth: width - leftPadding - rightPadding
readonly property int availableHeight: height - topPadding - bottomPadding
onBackgroundChanged: {
if (background) {
background.anchors.fill = root;
}
}
// NOTE: in Qt6 clip true will be default
clip: true
topMargin: topPadding