From 7c92ad390a60cbe9b3cd0939e78c4c1719ea05ff Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 12 Oct 2016 18:45:41 +0200 Subject: [PATCH] Add impl for some geom functions for image shapes. --- src/uxbox/main/geom.cljs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uxbox/main/geom.cljs b/src/uxbox/main/geom.cljs index c042f57e0..f04c52594 100644 --- a/src/uxbox/main/geom.cljs +++ b/src/uxbox/main/geom.cljs @@ -141,6 +141,7 @@ :text (size-rect shape) :rect (size-rect shape) :icon (size-rect shape) + :image (size-rect shape) :path (size-rect shape))) (defn- size-rect @@ -678,6 +679,7 @@ :text (text-transformation-matrix state shape) :circle (circle-transformation-matrix state shape) :icon (icon-transformation-matrix state shape) + :image (icon-transformation-matrix state shape) :path (path-transformation-matrix state shape) :group (group-transformation-matrix state shape))))