cljfx

https://github.com/cljfx/cljfx
ackerleytng 2020-05-11T00:55:59.101200Z

i see! it's alright then, i'll build it in linux and then jpackage it on windows

michaelb 2020-05-11T16:21:45.102300Z

with a component like :tab that has a :graphic setting, how do I tell it to use an image that’s available in resources/ — can resolve with

(<http://clojure.java.io/resource|clojure.java.io/resource> "foo.png")

michaelb 2020-05-11T16:22:10.102800Z

but even though I can definitely resolve, not clear how to give it to :tab

vlaaad 2020-05-11T16:26:17.102900Z

@michaelb :fx/type :image-view has :image prop that can load resources from the classpath

michaelb 2020-05-11T16:26:50.103500Z

nice, okay, was hunting, thanks for the tip!