[PC3 ToolBar] Use correct svg margin properties for padding

This commit is contained in:
Noah Davis 2020-11-10 13:56:38 -05:00
parent dc7d0f5b85
commit 6fd1f919c2

View File

@ -16,10 +16,10 @@ T.ToolBar {
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
implicitContentHeight + topPadding + bottomPadding)
leftPadding: background.leftMargin
topPadding: background.topMargin
rightPadding: background.rightMargin
bottomPadding: background.bottomMargin
leftPadding: background.margins.left
topPadding: background.margins.top
rightPadding: background.margins.right
bottomPadding: background.margins.bottom
contentItem: Item { }