From 66cec51c44b0b27e4479f295e83d0f780fda2500 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 16 Jun 2022 10:40:33 +0200 Subject: [PATCH] :bug: Fix text problem --- frontend/src/app/main/data/workspace/texts.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/data/workspace/texts.cljs b/frontend/src/app/main/data/workspace/texts.cljs index 956c41c59..30637d292 100644 --- a/frontend/src/app/main/data/workspace/texts.cljs +++ b/frontend/src/app/main/data/workspace/texts.cljs @@ -308,7 +308,7 @@ (assoc-in [:workspace-local :edition] (-> selected first :id))))))) (defn not-changed? [old-dim new-dim] - (> (mth/abs (- old-dim new-dim)) 0.1)) + (> (mth/abs (- old-dim new-dim)) 1)) (defn resize-text [id new-width new-height]