From 2267838dbca5d483392e871f42f56108d0756e2e Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Mon, 1 Jul 2024 03:09:59 +0500 Subject: [PATCH] plasmoid: Clip the ListView That's not a responsibility of a ScrollView to take care of Flickable's clipping. See https://invent.kde.org/frameworks/qqc2-desktop-style/-/merge_requests/332 and https://invent.kde.org/plasma/libplasma/-/merge_requests/1014 --- plasmoid/package/contents/ui/FullRepresentation.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plasmoid/package/contents/ui/FullRepresentation.qml b/plasmoid/package/contents/ui/FullRepresentation.qml index ef3d73fb9..4a1da0bab 100644 --- a/plasmoid/package/contents/ui/FullRepresentation.qml +++ b/plasmoid/package/contents/ui/FullRepresentation.qml @@ -40,6 +40,8 @@ PlasmaExtras.Representation { spacing: Kirigami.Units.smallSpacing + clip: true + delegate: DeviceDelegate { width: parent.width }