From 9fcddc37f68e2c22ed46bb08e2963a44d5e80470 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 6 May 2021 21:49:37 +0200 Subject: [PATCH] :bug: Fix problem with command --- CHANGES.md | 5 +++++ frontend/src/app/main/data/workspace/path/selection.cljs | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2cbb124c3..75192a939 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,11 @@ ### :boom: Breaking changes ### :heart: Community contributions by (Thank you!) +## 1.5.2-alpha + +### :bug: Bugs fixed + +- Fix problem with `close-path` command [#917](https://github.com/penpot/penpot/issues/917) ## 1.5.1-alpha diff --git a/frontend/src/app/main/data/workspace/path/selection.cljs b/frontend/src/app/main/data/workspace/path/selection.cljs index 93bb59e66..dec4027ea 100644 --- a/frontend/src/app/main/data/workspace/path/selection.cljs +++ b/frontend/src/app/main/data/workspace/path/selection.cljs @@ -51,9 +51,9 @@ content (get-in state (st/get-path state :content)) selected-point? #(gsh/has-point-rect? selrect %) selected-points (get-in state [:workspace-local :edit-path id :selected-points]) - positions (into (if shift? selected-points #{}) - (comp (map (comp gpt/point :params)) + (comp (filter #(not (= (:command %) :close-path))) + (map (comp gpt/point :params)) (filter selected-point?)) content)] (cond-> state