Fix double icon when crossing icon group (#1670)

This commit is contained in:
Leo 2023-05-03 02:29:13 +09:00 committed by GitHub
parent b0122f7cc8
commit 85beeb8efd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -704,7 +704,7 @@ public class Gala.WindowClone : Clutter.Actor {
if (hovered) {
icon_group.add_window (window, false, true);
} else {
icon_group.remove_window (window);
icon_group.remove_window (window, false);
}
}
}