diff options
author | 2022-02-10 09:20:52 +0100 | |
---|---|---|
committer | 2022-02-10 10:11:04 +0100 | |
commit | 7989a782d8cd0d383a0f246fe977349555b02e61 (patch) | |
tree | 0bd9bac9b09ca3a8ee8aedd80475b8db8705331a /kde-frameworks/plasma/files/plasma-5.88.0-make-OSD-an-actual-wayland-OSD.patch | |
parent | kde-frameworks/kxmlgui: drop 5.88.0* (diff) | |
download | gentoo-7989a782d8cd0d383a0f246fe977349555b02e61.tar.gz gentoo-7989a782d8cd0d383a0f246fe977349555b02e61.tar.bz2 gentoo-7989a782d8cd0d383a0f246fe977349555b02e61.zip |
kde-frameworks/plasma: drop 5.88.0*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/plasma/files/plasma-5.88.0-make-OSD-an-actual-wayland-OSD.patch')
-rw-r--r-- | kde-frameworks/plasma/files/plasma-5.88.0-make-OSD-an-actual-wayland-OSD.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/kde-frameworks/plasma/files/plasma-5.88.0-make-OSD-an-actual-wayland-OSD.patch b/kde-frameworks/plasma/files/plasma-5.88.0-make-OSD-an-actual-wayland-OSD.patch deleted file mode 100644 index 0631155c89bf..000000000000 --- a/kde-frameworks/plasma/files/plasma-5.88.0-make-OSD-an-actual-wayland-OSD.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 2ba1b0b642d540f74f0e21e7aaa272644ea4eda5 Mon Sep 17 00:00:00 2001 -From: Marco Martin <notmart@gmail.com> -Date: Mon, 8 Nov 2021 16:12:38 +0000 -Subject: [PATCH] make the OSD an actual wayland OSD - -when the OnScreenDisplay type is set, set it on the plasma shell surface -so KWin can actually treat it as such - -CCBUG:428859 ---- - src/plasmaquick/dialog.cpp | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/src/plasmaquick/dialog.cpp b/src/plasmaquick/dialog.cpp -index 4cea3a28e..3254b8320 100644 ---- a/src/plasmaquick/dialog.cpp -+++ b/src/plasmaquick/dialog.cpp -@@ -736,6 +736,13 @@ void DialogPrivate::applyType() - if (!wmType) { - KWindowSystem::setType(q->winId(), static_cast<NET::WindowType>(type)); - } -+#if HAVE_KWAYLAND -+ if (type == Dialog::OnScreenDisplay) { -+ if (shellSurface) { -+ shellSurface->setRole(KWayland::Client::PlasmaShellSurface::Role::OnScreenDisplay); -+ } -+ } -+#endif - } else { - q->setFlags(Qt::FramelessWindowHint | q->flags()); - --- -GitLab - |