From de387d00b11c10d9535e60b124ca11c6b30c3cf5 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 10 Nov 2016 18:35:42 +0100 Subject: [PATCH] Remove default proportion lock from the new shapes. --- src/uxbox/main/geom.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uxbox/main/geom.cljs b/src/uxbox/main/geom.cljs index d28b4fac8..618649f1c 100644 --- a/src/uxbox/main/geom.cljs +++ b/src/uxbox/main/geom.cljs @@ -285,14 +285,14 @@ (let [{:keys [width height]} metadata] (assoc shape :proportion (/ width height) - :proportion-lock true))) + :proportion-lock false))) (defn setup-proportions-rect [shape] (let [{:keys [width height]} (size shape)] (assoc shape :proportion (/ width height) - :proportion-lock true))) + :proportion-lock false))) ;; --- Resize (Dimentsions)