We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516667b commit fe897a9Copy full SHA for fe897a9
1 file changed
stackoverlay.js
@@ -86,6 +86,12 @@ export function enableMultimonitorDragDropSupport() {
86
87
const monitor = Utils.monitorAtCurrentPoint();
88
const space = Tiling.spaces.monitors.get(monitor);
89
+
90
+ // if space is already active, do nothing
91
+ if (Tiling.spaces.isActiveSpace(space)) {
92
+ return;
93
+ }
94
95
const selected = space?.selectedWindow;
96
space?.activateWithFocus(selected, false, false);
97
});
0 commit comments