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, 0 insertions, 32 deletions
diff --git a/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch b/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch
deleted file mode 100644
index ff5a1e663..000000000
--- a/source/kde/kde/patch/plasma-workspace/c7ba560ccaac5e469cb2d6bf66c39e1acf967454.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-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
-