From 20e90078db2d048cdba9dbe918104e679578a033 Mon Sep 17 00:00:00 2001 From: Elena Torro Date: Mon, 22 Jun 2026 15:40:12 +0200 Subject: [PATCH] :bug: Fix guides pill on drag --- frontend/src/app/main/ui/workspace/viewport/guides.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/viewport/guides.cljs b/frontend/src/app/main/ui/workspace/viewport/guides.cljs index f451564fa3..07cc05f357 100644 --- a/frontend/src/app/main/ui/workspace/viewport/guides.cljs +++ b/frontend/src/app/main/ui/workspace/viewport/guides.cljs @@ -681,7 +681,7 @@ ;; only overlay the dotted extensions. Drag and edit hide the WASM line ;; and require the full SVG line. show-line? (not= mode :hover) - show-pill? (or (= mode :edit) (= mode :hover)) + show-pill? (or (= mode :edit) (= mode :hover) (= mode :drag)) editing? (= mode :edit) on-key-down