summaryrefslogtreecommitdiff
path: root/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp b/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp
deleted file mode 100644
index d756e11a6e00..000000000000
--- a/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- ../plasma/applets/systemtray/systemtraywidget.cpp 2008/07/03 02:32:22 827463
-+++ ../plasma/applets/systemtray/systemtraywidget.cpp 2008/08/05 13:57:28 842541
-@@ -52,6 +52,17 @@
- // Override spacing set by the current style
- m_mainLayout->setContentsMargins(0, 0, 0, 0);
- m_mainLayout->setSpacing(4);
-+
-+ // Widgets added to the parent before this one may end up
-+ // on top of this one if their native windows are created
-+ // after this one, so raise() to make sure this widget is
-+ // on top.
-+ // raise() -- doesn't work for some reason
-+ foreach (QObject *sibling, parent->children()) {
-+ if (sibling != this && sibling->isWidgetType()) {
-+ static_cast<QWidget*>(sibling)->lower();
-+ }
-+ }
- }
-
- void SystemTrayWidget::init()