From 6832af7be67acb0102291718ba44a0e1d35d6d95 Mon Sep 17 00:00:00 2001 From: Leonhard Kargl Date: Mon, 12 Aug 2024 21:30:21 +0200 Subject: [PATCH] DesktopIntegration: Don't send positioned windows --- src/DesktopIntegration.vala | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/DesktopIntegration.vala b/src/DesktopIntegration.vala index c59ceb994..97c3c1aaa 100644 --- a/src/DesktopIntegration.vala +++ b/src/DesktopIntegration.vala @@ -44,6 +44,10 @@ public class Gala.DesktopIntegration : GLib.Object { return false; } + if (ShellClientsManager.get_instance ().is_positioned_window (window)) { + return false; + } + switch (window.get_window_type ()) { case Meta.WindowType.NORMAL: case Meta.WindowType.DIALOG: