Skip to content

Commit e5333ee

Browse files
committed
Fix stacking order after workspace switch
1 parent 87c5c82 commit e5333ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WindowManager.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2058,8 +2058,8 @@ namespace Gala {
20582058
continue;
20592059
}
20602060

2061-
windows.prepend (actor);
2062-
parents.prepend (actor.get_parent ());
2061+
windows.append (actor);
2062+
parents.append (actor.get_parent ());
20632063

20642064
clutter_actor_reparent (actor, static_windows);
20652065
actor.set_translation (-clone_offset_x, -clone_offset_y, 0);

0 commit comments

Comments
 (0)