We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a36c2c commit 38657d6Copy full SHA for 38657d6
src/WindowTracker.vala
@@ -28,7 +28,11 @@ public class Gala.WindowTracker : GLib.Object {
28
}
29
30
private void init_window_tracking (Meta.Display display) {
31
- display.window_created.connect (track_window);
+ display.window_created.connect ((window) => {
32
+ InternalUtils.wait_for_window_actor_visible (window, (window_actor) => {
33
+ track_window (window_actor.meta_window);
34
+ });
35
36
37
38
private void on_startup_sequence_changed (Meta.StartupSequence sequence) {
0 commit comments