From dffab9a4823f84d82510f92ce883c8096e32df27 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 30 Aug 2016 19:19:09 +0300 Subject: [PATCH] Disable resize handlers for group. --- src/uxbox/main/ui/shapes/selection.cljs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/uxbox/main/ui/shapes/selection.cljs b/src/uxbox/main/ui/shapes/selection.cljs index 0dd6f644c..7fbca3c28 100644 --- a/src/uxbox/main/ui/shapes/selection.cljs +++ b/src/uxbox/main/ui/shapes/selection.cljs @@ -196,5 +196,8 @@ (single-not-editable-selection-handlers shape) (single-selection-handlers (first shapes))) + (= :group (:type shape)) + (single-not-editable-selection-handlers shape) + :else (single-selection-handlers (first shapes))))))