Blake Watson
Blake Watson
Fair 'nuff. I managed to get it to compile by commenting out sonar-runner, and jiggering the Java/Gradle versions, but—yeah, I don't think anyone's gonna wanna see that result. =)
Oh, so it's like "I know that this field is double so I'll convert it?" I was thinking there might be a way to query the library to say "Hey,...
The issue is the kind of usual setup vs. initialization thing. Right now, the navigation in my app works such that it sets up the user-interface entirely. But how do...
FWIW, I'd be interested in investigating this, but I can't make the JPro part work in pure Java (maven version conflicts?). If I could get that far, I'd give it...
Thanks, vlaaad! This code "works" in the sense that it is called and seems to be called on the right object with the right parameters: ``` :on-created (fn [view] (let...
The `fx/run-later` doesn't seem to change anything: ``` :on-created (fn [view] (fx/run-later (let [s (-> view .getItems .size)] (println "SCROLLING TO: " (dec s)) (.scrollTo view (dec s))))) ``` >...
This is with Java 15 and JavaFX 16, and your minimal example (or any of your examples): ``` (ns example (:require [cljfx.api :as fx])) (fx/on-fx-thread (fx/create-component {:fx/type :stage :showing true...
OK, I tested JavaFX 16 against JDK 15, 14 and 11, and got the same result. Then I tested with JavaFX 11 and JDK 11, every time I get: ```...
Yes, using cursive. I did not have any problems on a different machine, and I haven't had a chance to nail down the difference yet. (I'm using FX15 on the...