diff --git a/CHANGES.md b/CHANGES.md index 455b4882e..d19d888f7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -14,6 +14,7 @@ ### :bug: Bugs fixed - Fix broken profile and profile options form. +- Fix problem with mask and flip [#715](https://github.com/penpot/penpot/issues/715) ### :heart: Community contributions by (Thank you!) diff --git a/common/app/common/pages/changes.cljc b/common/app/common/pages/changes.cljc index 3ff82791e..7f1da9a45 100644 --- a/common/app/common/pages/changes.cljc +++ b/common/app/common/pages/changes.cljc @@ -160,7 +160,9 @@ (assoc :x (-> mask :selrect :x) :y (-> mask :selrect :y) :width (-> mask :selrect :width) - :height (-> mask :selrect :height))))) + :height (-> mask :selrect :height) + :flip-x (-> mask :flip-x) + :flip-y (-> mask :flip-y))))) (update-group [group objects] (let [children (->> group :shapes (map #(get objects %)))] (cond