From a7aeba21c4e0c5cff2e2c4bc8b1d04def85c2a33 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Thu, 17 Sep 2020 12:51:51 -0600 Subject: [PATCH] Fix a few more reference errors in PlasmaExtras.ListItem --- src/declarativeimports/plasmaextracomponents/qml/ListItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarativeimports/plasmaextracomponents/qml/ListItem.qml b/src/declarativeimports/plasmaextracomponents/qml/ListItem.qml index b05bf31b8..977084150 100644 --- a/src/declarativeimports/plasmaextracomponents/qml/ListItem.qml +++ b/src/declarativeimports/plasmaextracomponents/qml/ListItem.qml @@ -46,7 +46,7 @@ Kirigami.AbstractListItem { topPadding: __background.margins.top bottomPadding: __background.margins.bottom - implicitWidth: Math.max(__listItem.implicitBackgroundWidth + leftInset + rightInset, __listItem.implicitContentWidthimplicitContentWidth + leftPadding + rightPadding) + implicitWidth: Math.max(__listItem.implicitBackgroundWidth + __listItem.leftInset + __listItem.rightInset, __listItem.implicitContentWidthimplicitContentWidth + __listItem.leftPadding + __listItem.rightPadding) // TODO KF6: Make this behave more like the normal Control default. // Behaving this way for backwards compatibility reasons.