humbleui

Ben Sless 2024-11-06T12:43:46.076749Z

Question regarding dynamism - I have compA which refers to compB When I change the definition of compB, the UI doesn't change until I redef compA Is this expected?

Niki 2024-11-06T13:46:23.825939Z

Yes, I think so

Niki 2024-11-06T13:46:33.529029Z

We don’t watch vars for changes

Niki 2024-11-06T13:47:13.202359Z

And UI needs a reason to recompute

Niki 2024-11-06T13:48:00.804389Z

I personally use clj-reload to re-evaluate everything top to bottom

Niki 2024-11-06T13:48:35.654319Z

Watching vars might be a feature for the future (others has requested it, too), I haven’t really looked into it

Ben Sless 2024-11-06T14:15:24.520209Z

This was an unexpected deviation from Clojure's behavior