Skip to content

Commit 8e70253

Browse files
committed
WorkspaceManager: don't treat dock windows transients as real windows
1 parent 2673074 commit 8e70253

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/WorkspaceManager.vala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,11 @@ public class Gala.WorkspaceManager : Object {
117117
foreach (var actor in window_actors) {
118118
var win = actor.meta_window;
119119

120-
if (win == null || win.on_all_workspaces || win.get_workspace () == null) {
120+
if (win == null ||
121+
win.on_all_workspaces ||
122+
win.get_workspace () == null ||
123+
!Utils.get_window_and_ancestors_normal (win)
124+
) {
121125
continue;
122126
}
123127

0 commit comments

Comments
 (0)