0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 19:41:27 -05:00

🐛 Fix path editing with wrong selrect (#6168)

This commit is contained in:
Aitor Moreno 2025-03-28 09:43:46 +01:00 committed by GitHub
parent d573da55b0
commit af0a516a79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View file

@ -12,6 +12,7 @@
### :bug: Bugs fixed
- Fix path having a wrong selrect [Taiga #10257](https://tree.taiga.io/project/penpot/issue/10257)
- Fix SVG `stroke-linecap` property when importing SVGs [Taiga #9489](https://tree.taiga.io/project/penpot/issue/9489)
## 2.6.0 (Unreleased)

View file

@ -347,7 +347,11 @@
move-p nil
content (seq content)]
(if content
(let [command (first content)
(let [last-p (last content)
content (if (= :move-to (:command last-p))
(butlast content)
content)
command (first content)
to-p (command->point command)
[from-p move-p command-pts]

View file

@ -126,7 +126,7 @@
(pt= (:from subpath) (:to subpath)))
(defn close-subpaths
"Searches a path for possible supaths that can create closed loops and merge them"
"Searches a path for possible subpaths that can create closed loops and merge them"
[content]
(let [subpaths (get-subpaths content)
closed-subpaths