فهرست منبع

fix: block select all propagation

Konstantinos Kaloutas 2 سال پیش
والد
کامیت
590ee630bd
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      src/main/frontend/handler/editor.cljs

+ 4 - 2
src/main/frontend/handler/editor.cljs

@@ -3631,8 +3631,10 @@
         target-element (.-nodeName (.-target e))]
     (cond
       (whiteboard?)
-      (.selectAll (.-api ^js (state/active-tldraw-app)))
-      
+      (do
+        (util/stop e)
+        (.selectAll (.-api ^js (state/active-tldraw-app))))
+
       ;; editing block fully selected
       (and edit-block edit-input
            (= (util/get-selected-text) (.-value edit-input)))