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