summaryrefslogtreecommitdiffstats
path: root/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch
diff options
context:
space:
mode:
Diffstat (limited to 'source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch')
-rw-r--r--source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch b/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch
new file mode 100644
index 000000000..ff5a1e663
--- /dev/null
+++ b/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch
@@ -0,0 +1,32 @@
+From c7ba560ccaac5e469cb2d6bf66c39e1acf967454 Mon Sep 17 00:00:00 2001
+From: Nicolas Fella <nicolas.fella@gmx.de>
+Date: Sun, 21 Aug 2022 16:33:50 +0200
+Subject: [PATCH] [widgetexplorer] Don't recurse into applet's containments
+
+The intention of this code appears to be finding system tray applets, since the systemtray is a containment within another applet/containment
+
+However the code causes an infinit recursion since we are calling addContainment on the same containment again
+
+The recursion also is unnecessary since corona->containments() already lists the system tray containment, so we don't need to find it by recursing through the panel's children
+---
+ components/shellprivate/widgetexplorer/widgetexplorer.cpp | 4 ----
+ 1 file changed, 4 deletions(-)
+
+diff --git a/components/shellprivate/widgetexplorer/widgetexplorer.cpp b/components/shellprivate/widgetexplorer/widgetexplorer.cpp
+index c20bd59066..6de3890d5f 100644
+--- a/components/shellprivate/widgetexplorer/widgetexplorer.cpp
++++ b/components/shellprivate/widgetexplorer/widgetexplorer.cpp
+@@ -280,10 +280,6 @@ void WidgetExplorerPrivate::addContainment(Containment *containment)
+
+ foreach (Applet *applet, containment->applets()) {
+ if (applet->pluginMetaData().isValid()) {
+- Containment *childContainment = applet->property("containment").value<Containment *>();
+- if (childContainment) {
+- addContainment(childContainment);
+- }
+ runningApplets[applet->pluginMetaData().pluginId()]++;
+ } else {
+ qDebug() << "Invalid plugin metadata. :(";
+--
+GitLab
+