From 3a260825b90bc34ced789ff8532fbf8c4a6015df Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 1 Feb 2024 16:58:06 +0100 Subject: [PATCH] :bug: Fix problem with multiplayer cursors --- frontend/src/app/main/data/workspace/notifications.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/main/data/workspace/notifications.cljs b/frontend/src/app/main/data/workspace/notifications.cljs index 6efa574390..54397b2f30 100644 --- a/frontend/src/app/main/data/workspace/notifications.cljs +++ b/frontend/src/app/main/data/workspace/notifications.cljs @@ -83,6 +83,7 @@ ;; position changes. (->> stream (rx/filter mse/pointer-event?) + (rx/filter #(= :viewport (mse/get-pointer-source %))) (rx/pipe (rxs/throttle 100)) (rx/map #(handle-pointer-send file-id (:pt %)))))