diff --git a/CHANGES.md b/CHANGES.md index 61e57bd40..8ad27e579 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -41,6 +41,7 @@ - Fix problem with selected colors and texts [Taiga #5051](https://tree.taiga.io/project/penpot/issue/5051) - Fix problem when assigning color from palette or assets [Taiga #5050](https://tree.taiga.io/project/penpot/issue/5050) - Fix shortcuts for alignment [Taiga #5030](https://tree.taiga.io/project/penpot/issue/5030) +- Fix path options not showing when editing rects or ellipses [Taiga #5053](https://tree.taiga.io/project/penpot/issue/5053) ### :heart: Community contributions by (Thank you!) - To @ondrejkonec: for contributing to the code with: diff --git a/frontend/src/app/main/ui/workspace/viewport/widgets.cljs b/frontend/src/app/main/ui/workspace/viewport/widgets.cljs index b906bc533..4503911c6 100644 --- a/frontend/src/app/main/ui/workspace/viewport/widgets.cljs +++ b/frontend/src/app/main/ui/workspace/viewport/widgets.cljs @@ -58,7 +58,8 @@ shape (or drawing-obj (-> selected first))] (when (or (and (= (count selected) 1) (= (:id shape) edition) - (cph/path-shape? shape)) + (and (not (cph/text-shape? shape)) + (not (cph/frame-shape? shape)))) (and (some? drawing-obj) (cph/path-shape? drawing-obj) (not= :curve (:tool drawing))))