0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-15 17:21:17 -05:00

Merge pull request #3110 from penpot/alotor-fixes

🐛 Fix problem with frame title rotation
This commit is contained in:
Alejandro 2023-04-05 09:28:03 +02:00 committed by GitHub
commit 73b913065f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# CHANGELOG
## 1.18.2
- Fix problem with frame title rotation
## 1.18.1
### :bug: Bugs fixed

View file

@ -44,7 +44,7 @@
(defn left?
[cur cand]
(let [closex? (mth/close? (:x cand) (:x cur))]
(let [closex? (mth/close? (:x cand) (:x cur) 0.01)]
(cond
(and closex? (< (:y cand) (:y cur))) cand
closex? cur

View file

@ -1 +1 @@
1.18.1
1.18.2