Re: off-topic: JavaFX question

2018-03-11 Thread Emilian Bold
Most likely a javafx bug like https://bugs.openjdk.java.net/browse/JDK-8169777 Looks like the mouse coordinates are not HiDPI aware and your laptop screen is surely Retina. >From the issue: > Approved for backport to 8u-dev for 8u152. So, perhaps update the JDK on your Mac too, it might have b

Re: off-topic: JavaFX question

2018-03-05 Thread Thomas Wolf
Hi Emi, Initially I was going to respond by saying that I'm not sure where to print the stack trace and/or set breakpoints since my code isn't anywhere in the event handling path and I was going to post a stripped-down example java file to illustrate. So I created a very simple example (see attach

Re: off-topic: JavaFX question

2018-03-03 Thread Emilian Bold
Interesting. A modal dialog will have a separate, temporary, event queue AFAIK. Have you tried just printing a stacktrace in the JFrame, when it works then compare to what happens and how the mouse click is handled in the JDialog? You can probably attach a debugger/btrace script to see the behav

Re: off-topic: JavaFX question

2018-03-02 Thread cowwoc
You mentioned Google, but have you tried https://stackoverflow.com/ ? I believe they have quite a few Swing/JavaFX people there. Gili On 2018-03-02 2:35 PM, Thomas Wolf wrote: Sorry for bother this group, but I literally found zero help in Google and the pool of Swing/JavaFX knowledgeable peop

off-topic: JavaFX question

2018-03-02 Thread Thomas Wolf
Sorry for bother this group, but I literally found zero help in Google and the pool of Swing/JavaFX knowledgeable people is a quickly dwindling one :-( Our Swing application puts up a JDialog whose contents is a JTabbedPane with a few tabs. One of them is currently a JEditorPane that was displayi