From 8697df75c1b404ff1559419889b0e3a873ff1801 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 27 Feb 2017 20:39:02 +0100 Subject: [PATCH] Fix path drawing broken in previous commits. --- frontend/src/uxbox/main/data/workspace/drawing.cljs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/uxbox/main/data/workspace/drawing.cljs b/frontend/src/uxbox/main/data/workspace/drawing.cljs index 0feed4ea5..363ed8917 100644 --- a/frontend/src/uxbox/main/data/workspace/drawing.cljs +++ b/frontend/src/uxbox/main/data/workspace/drawing.cljs @@ -125,11 +125,13 @@ ptk/WatchEvent (watch [_ state stream] (let [{:keys [id] :as shape} (get-in state [:workspace :drawing]) - resize-mtx (get-in state [:workspace :modifiers id :resize])] + resize-mtx (get-in state [:workspace :modifiers id :resize]) + shape (cond-> shape + resize-mtx (geom/transform resize-mtx))] (if-not shape (rx/empty) (rx/of (clear-drawing-state) - (uds/add-shape (geom/transform shape resize-mtx)) + (uds/add-shape shape) (uds/select-first-shape) ::uev/interrupt)))))