Hello community,
here is the log from the commit of package plasma-framework for
openSUSE:Factory checked in at 2020-10-03 18:55:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma-framework (Old)
and /work/SRC/openSUSE:Factory/.plasma-framework.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma-framework"
Sat Oct 3 18:55:32 2020 rev:97 rq:836486 version:5.74.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma-framework/plasma-framework.changes
2020-09-18 14:44:30.164170646 +0200
+++
/work/SRC/openSUSE:Factory/.plasma-framework.new.4249/plasma-framework.changes
2020-10-03 18:55:41.201494529 +0200
@@ -1,0 +2,6 @@
+Thu Sep 24 07:48:56 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Add patch to fix PC3 Button icon colors (kde#426556):
+ * 0001-Fix-PC3-Button-ToolButton-icons-not-always-having-th.patch
+
+-------------------------------------------------------------------
New:
----
0001-Fix-PC3-Button-ToolButton-icons-not-always-having-th.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma-framework.spec ++++++
--- /var/tmp/diff_new_pack.4CtcRL/_old 2020-10-03 18:55:42.553496027 +0200
+++ /var/tmp/diff_new_pack.4CtcRL/_new 2020-10-03 18:55:42.553496027 +0200
@@ -36,6 +36,8 @@
Source2: frameworks.keyring
%endif
Source99: baselibs.conf
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Fix-PC3-Button-ToolButton-icons-not-always-having-th.patch
BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version}
BuildRequires: fdupes
BuildRequires: kf5-filesystem
@@ -134,7 +136,7 @@
%lang_package
%prep
-%setup -q
+%autosetup -p1
%build
%cmake_kf5 -d build
++++++ 0001-Fix-PC3-Button-ToolButton-icons-not-always-having-th.patch ++++++
>From 3167717797d07a8645391e093fa91526c4645f4f Mon Sep 17 00:00:00 2001
From: Noah Davis <[email protected]>
Date: Wed, 23 Sep 2020 20:23:08 -0400
Subject: [PATCH] Fix PC3 Button/ToolButton icons not always having the right
color set
BUG: 426556
FIXED-IN: 5.75
---
.../plasmacomponents3/private/ButtonContent.qml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/declarativeimports/plasmacomponents3/private/ButtonContent.qml
b/src/declarativeimports/plasmacomponents3/private/ButtonContent.qml
index 6dc2ce085..91428bdb3 100644
--- a/src/declarativeimports/plasmacomponents3/private/ButtonContent.qml
+++ b/src/declarativeimports/plasmacomponents3/private/ButtonContent.qml
@@ -42,7 +42,7 @@ GridLayout {
implicitWidth: root.parent.icon.width > 0 ? root.parent.icon.width :
defaultIconSize
implicitHeight: root.parent.icon.height > 0 ? root.parent.icon.height
: defaultIconSize
-
+ colorGroup: parent.PlasmaCore.ColorScope.colorGroup
visible: source.length > 0 && root.parent.display !== T.Button.TextOnly
source: root.parent.icon ? (root.parent.icon.name ||
root.parent.icon.source) : ""
status: usingFocusBackground ? PlasmaCore.Svg.Selected :
PlasmaCore.Svg.Normal
--
2.25.1