From f0c7e2d19f274fbc479d6a913d54b178c2909d04 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Mon, 5 Oct 2020 16:27:45 -0600 Subject: [PATCH] [applets/digital-clock] Fix event list item height Because the content is manufactured from scratch, we need to set the height manually, or else everything will get scrunched together. BUG: 427281 FIXED-IN: 5.20 --- applets/digital-clock/package/contents/ui/CalendarView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/applets/digital-clock/package/contents/ui/CalendarView.qml b/applets/digital-clock/package/contents/ui/CalendarView.qml index 55ac50774..a7104100e 100644 --- a/applets/digital-clock/package/contents/ui/CalendarView.qml +++ b/applets/digital-clock/package/contents/ui/CalendarView.qml @@ -263,6 +263,7 @@ PlasmaComponents3.Page { delegate: PlasmaExtras.ListItem { id: eventItem + implicitHeight: eventGrid.height + PlasmaCore.Units.smallSpacing * 2 property bool hasTime: { // Explicitly all-day event if (modelData.isAllDay) {