From 8df6ee502a5e0ddfd58236dc7db6346679432ab5 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 21 Oct 2016 00:23:55 +0200 Subject: [PATCH] Add support for raw-icon to drawarea. --- src/uxbox/main/ui/workspace/drawarea.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uxbox/main/ui/workspace/drawarea.cljs b/src/uxbox/main/ui/workspace/drawarea.cljs index 060c62b71..fc92207ad 100644 --- a/src/uxbox/main/ui/workspace/drawarea.cljs +++ b/src/uxbox/main/ui/workspace/drawarea.cljs @@ -110,6 +110,7 @@ (when-let [shape (:drawing @wb/workspace-ref)] (case (:type shape) :icon (on-init-draw-icon shape) + :icon-raw (on-init-draw-icon shape) :path (if (:free shape) (on-init-draw-free-path shape) (on-init-draw-path shape))