🐛 Fixed problem when using colors from shared libs

This commit is contained in:
alonso.torres 2020-10-02 21:58:28 +02:00 committed by Alonso Torres
parent 272d023f3c
commit 6f56a19390

View file

@ -186,7 +186,8 @@
:operations uoperations})]] :operations uoperations})]]
[rchanges uchanges])) [rchanges uchanges]))
(let [attr-ref-id (keyword (str (name attr) "-ref-id"))] (let [attr-ref-id (keyword (str (name attr) "-ref-id"))]
(if-not (contains? shape attr-ref-id) (if (or (not (contains? shape attr-ref-id))
(nil? (get library-items (get shape attr-ref-id))))
(recur (next attrs) (recur (next attrs)
roperations roperations
uoperations) uoperations)