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 52f7a16 commit 19731f7Copy full SHA for 19731f7
src/WorkspaceManager.vala
@@ -113,7 +113,12 @@ public class Gala.WorkspaceManager : Object {
113
foreach (var actor in window_actors) {
114
var win = actor.meta_window;
115
116
- if (win == null || win.on_all_workspaces || win.get_workspace () == null) {
+ if (
117
+ win == null ||
118
+ win.on_all_workspaces ||
119
+ Meta.Prefs.get_workspaces_only_on_primary () && !win.is_on_primary_monitor () ||
120
+ win.get_workspace () == null
121
+ ) {
122
continue;
123
}
124
0 commit comments