Skip to content

Commit 04b8e01

Browse files
committed
hide bounding-corners on while scaling
1 parent 767967d commit 04b8e01

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/renderer/element/impl/container/canvas.cljs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@
9292
(when (seq bounds)
9393
[:<>
9494
[handle.v/wrapping-bounding-box bounds]
95-
(when (= state :scale) [overlay/size-label bounds])
96-
[handle.v/bounding-corners bounds]])
95+
(if (= state :scale)
96+
[overlay/size-label bounds]
97+
[handle.v/bounding-corners bounds])])
9798

9899
(when (and select-tool-active pivot-point)
99100
[overlay/times pivot-point])])

0 commit comments

Comments
 (0)