🐛 Fix problem with frame title rotation

This commit is contained in:
alonso.torres 2023-04-05 09:22:47 +02:00
parent 6d3baaae47
commit 8db3f2b277
3 changed files with 6 additions and 2 deletions

View file

@ -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