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 0cd8f3b commit d236676Copy full SHA for d236676
src/Widgets/MultitaskingView/MultitaskingView.vala
@@ -508,5 +508,18 @@ namespace Gala {
508
509
return true;
510
}
511
+
512
+ public override bool captured_event (Clutter.Event event) {
513
+ /* If we aren't open but receive events this means we are animating closed
514
+ * or we are finishing a workspace switch animation. In any case we want to
515
+ * prevent a drag and drop to start for the window clones which can happen
516
+ * pretty easily if you click on one while the animation finishes.
517
+ */
518
+ if (!opened) {
519
+ return Clutter.EVENT_STOP;
520
+ }
521
522
+ return Clutter.EVENT_PROPAGATE;
523
524
525
0 commit comments