diff options
author | Aylur <[email protected]> | 2024-11-17 16:16:42 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-11-17 16:16:42 +0000 |
commit | 813abcaa49546c10b5bc46c19bac853b6dc9612d (patch) | |
tree | b375c479589ac74c450c795940cfe822fff65e9f | |
parent | 5f35244b12150b074474f4808115a63ee38366ec (diff) |
fix #88: hyprland sync workspaces before signal emission
-rw-r--r-- | lib/hyprland/hyprland.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hyprland/hyprland.vala b/lib/hyprland/hyprland.vala index ea95cab..195a3f6 100644 --- a/lib/hyprland/hyprland.vala +++ b/lib/hyprland/hyprland.vala @@ -393,8 +393,8 @@ public class Hyprland : Object { case "closewindow": _clients.get(args[1]).removed(); _clients.remove(args[1]); - client_removed(args[1]); yield sync_workspaces(); + client_removed(args[1]); notify_property("clients"); break; |