Skip to content

Commit

Permalink
DesktopIntegration: Don't send positioned windows
Browse files Browse the repository at this point in the history
  • Loading branch information
leolost2605 committed Aug 12, 2024
1 parent 6f5d323 commit 6832af7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/DesktopIntegration.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6832af7

Please sign in to comment.