From ad66955a54a9e292a9a1f89ac7984ff2ac80d5a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Moya?= Date: Tue, 20 Oct 2020 14:56:12 +0200 Subject: [PATCH] :bug: Fix selection inside group with double click --- frontend/src/app/main/data/workspace/selection.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/data/workspace/selection.cljs b/frontend/src/app/main/data/workspace/selection.cljs index d1282db64c..eeee085016 100644 --- a/frontend/src/app/main/data/workspace/selection.cljs +++ b/frontend/src/app/main/data/workspace/selection.cljs @@ -177,7 +177,7 @@ reverse (d/seek #(geom/has-point? % position)))] (when selected - (rx/of deselect-all (select-shape (:id selected)))))))) + (rx/of (deselect-all) (select-shape (:id selected)))))))) ;; --- Group shapes