From f2ebb751992f4193f312ff9be61f0e1f99df4fed Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 23 Aug 2016 16:30:03 +0300 Subject: [PATCH] Use not resizable selection component for shape component. When no edition mode is activated. --- src/uxbox/main/ui/shapes/selection.cljs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/uxbox/main/ui/shapes/selection.cljs b/src/uxbox/main/ui/shapes/selection.cljs index 688ad62c9..73019dd1e 100644 --- a/src/uxbox/main/ui/shapes/selection.cljs +++ b/src/uxbox/main/ui/shapes/selection.cljs @@ -187,9 +187,10 @@ :else (cond - (and (= :path (:type shape)) - (= @edition-ref (:id shape))) - (path-edition-selection-handlers shape) + (= :path (:type shape)) + (if (= @edition-ref (:id shape)) + (path-edition-selection-handlers shape) + (single-not-editable-selection-handlers shape)) :else (single-selection-handlers (first shapes))))))