From 2a2e87cb1ce4cdc5ef9e3d5e6f2a3bd161b7ed11 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 21 Oct 2016 16:42:15 +0200 Subject: [PATCH] Add missing impl for icon-raw for get-vertex-point geom func. --- src/uxbox/main/geom.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uxbox/main/geom.cljs b/src/uxbox/main/geom.cljs index c5250275b..cae018461 100644 --- a/src/uxbox/main/geom.cljs +++ b/src/uxbox/main/geom.cljs @@ -168,6 +168,7 @@ [shape id] (case (:type shape) :icon (get-rect-vertext-point shape id) + :icon-raw (get-rect-vertext-point shape id) :rect (get-rect-vertext-point shape id) :circle (get-circle-vertext-point shape id) :text (get-rect-vertext-point shape id)))