From 8db3f2b277208a3d58ede05988aafad875d03f53 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Wed, 5 Apr 2023 09:22:47 +0200 Subject: [PATCH] :bug: Fix problem with frame title rotation --- CHANGES.md | 4 ++++ frontend/src/app/main/ui/workspace/viewport/utils.cljs | 2 +- version.txt | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 347147c73..ff3eec4c0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # CHANGELOG +## 1.18.2 + +- Fix problem with frame title rotation + ## 1.18.1 ### :bug: Bugs fixed diff --git a/frontend/src/app/main/ui/workspace/viewport/utils.cljs b/frontend/src/app/main/ui/workspace/viewport/utils.cljs index 4768e0331..71124b0a1 100644 --- a/frontend/src/app/main/ui/workspace/viewport/utils.cljs +++ b/frontend/src/app/main/ui/workspace/viewport/utils.cljs @@ -44,7 +44,7 @@ (defn left? [cur cand] - (let [closex? (mth/close? (:x cand) (:x cur))] + (let [closex? (mth/close? (:x cand) (:x cur) 0.01)] (cond (and closex? (< (:y cand) (:y cur))) cand closex? cur diff --git a/version.txt b/version.txt index ec6d649be..b57fc7228 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.18.1 +1.18.2