🐛 Fix problem with frame titles not moving

This commit is contained in:
alonso.torres 2025-11-06 17:42:07 +01:00
parent 76f6f71e02
commit c1638817b2

View File

@ -66,9 +66,9 @@
(defn apply-modifiers-to-selected
[selected objects modifiers]
(->> modifiers
(filter #(contains? selected (:id %)))
(filter #(contains? selected (first %)))
(reduce
(fn [objects {:keys [id transform]}]
(fn [objects [id transform]]
(update objects id gsh/apply-transform transform))
objects)))