mirror of
https://github.com/penpot/penpot.git
synced 2025-07-17 15:47:12 +02:00
🐛 Fix typo on has-point? impl
This commit is contained in:
parent
87f085da74
commit
4e974cd2f3
1 changed files with 1 additions and 2 deletions
|
@ -343,12 +343,11 @@
|
|||
(defn fast-has-point?
|
||||
[shape point]
|
||||
(let [x1 (dm/get-prop shape :x)
|
||||
y1 (dm/get-prop shape :x)
|
||||
y1 (dm/get-prop shape :y)
|
||||
x2 (+ x1 (dm/get-prop shape :width))
|
||||
y2 (+ y1 (dm/get-prop shape :height))
|
||||
px (dm/get-prop point :x)
|
||||
py (dm/get-prop point :y)]
|
||||
|
||||
(and (>= px x1)
|
||||
(<= px x2)
|
||||
(>= py y1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue