From e2db47eaae00ec33f8971db44b68645c5d3b9590 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 17 Aug 2021 11:36:49 +0100 Subject: gentoo resync : 17.08.2021 --- .../plasma-5.85.0-fix-pinned-calendar-dots.patch | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 kde-frameworks/plasma/files/plasma-5.85.0-fix-pinned-calendar-dots.patch (limited to 'kde-frameworks/plasma/files/plasma-5.85.0-fix-pinned-calendar-dots.patch') diff --git a/kde-frameworks/plasma/files/plasma-5.85.0-fix-pinned-calendar-dots.patch b/kde-frameworks/plasma/files/plasma-5.85.0-fix-pinned-calendar-dots.patch new file mode 100644 index 000000000000..0342024ca89d --- /dev/null +++ b/kde-frameworks/plasma/files/plasma-5.85.0-fix-pinned-calendar-dots.patch @@ -0,0 +1,37 @@ +From 19fe24ef9377178413438d7749630053995af229 Mon Sep 17 00:00:00 2001 +From: Eugene Popov +Date: Mon, 9 Aug 2021 15:56:02 +0000 +Subject: [PATCH] [Calendar] Fix pinned calendar displaying the wrong number of + dots + +Use assignment instead of binding for the rootIndex property of the DelegateModel. + +BUG: 440627 +FIXED-IN: 5.86 +--- + src/declarativeimports/calendar/qml/DayDelegate.qml | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/declarativeimports/calendar/qml/DayDelegate.qml b/src/declarativeimports/calendar/qml/DayDelegate.qml +index af31991db..3f7fc681b 100644 +--- a/src/declarativeimports/calendar/qml/DayDelegate.qml ++++ b/src/declarativeimports/calendar/qml/DayDelegate.qml +@@ -81,13 +81,14 @@ PlasmaComponents3.AbstractButton { + Repeater { + model: DelegateModel { + model: dayStyle.dayModel +- rootIndex: modelIndex(index) + delegate: Rectangle { + width: PlasmaCore.Units.smallSpacing * 1.5 + height: width + radius: width / 2 + color: model.eventColor ? Kirigami.ColorUtils.linearInterpolation(model.eventColor, PlasmaCore.Theme.textColor, 0.2) : PlasmaCore.Theme.highlightColor + } ++ ++ Component.onCompleted: rootIndex = modelIndex(index) + } + } + } +-- +GitLab + -- cgit v1.2.3