🐛 Fix text override corner case

This commit is contained in:
Pablo Alba
2025-07-21 12:21:37 +02:00
committed by Pablo Alba
parent 6dfd05fdd1
commit ae3213f5d4

View File

@@ -127,7 +127,8 @@
entries"
[a b]
(cond
(not= (type a) (type b))
(and (not= (type a) (type b))
(not (and (map? a) (map? b)))) ;; Sometimes they are both maps but of different subtypes
false
(map? a)