openjdk-jfx
openjdk-jfx copied to clipboard
The openjfx repo has moved to:
`LabeledSkinBase` contains this code in `computePrefWidth`: // Fix for RT-39889 double graphicWidth = graphic == null ? 0.0 : Utils.boundedSize(graphic.prefWidth(-1), graphic.minWidth(-1), graphic.maxWidth(-1)); It calls here (out of the blue) some...
I am using Intellij (JavaFX with Maven module), after adding the javafx plugins I get the following error: Exception in Application start method ``` java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)...
Running a JavaFX application on Ubuntu 20.04.1 LTS does not scale as expected. The font and other controls are tiny on a 3840 x 2160 screen with a scale factor...
### Background If the accelerator set on a MenuItem, placed on a MenuBar, is similar to the key events pre-defined on a control, the accelerator shouldn't fire the action of...
Hi I'm trying to include all the (openjfx) dependencies in a fat jar so it can be run without OpenJFX installed. I have successfully built a .jar file contained all...
When the value is at min or max, the stroke appears to be clipped. I can't think of anything to try other than tweaking the background and the padding (see...
I created a `TableView`, set the selection model to `SelectionMode.MULTIPLE` and added lots of items to it (~8000). When I hit ctrl + a to select all elements in the...
In my exception tracker, I got this error report: ``` java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.ArrayList.elementData(ArrayList.java:422) at java.util.ArrayList.get(ArrayList.java:435) at com.sun.javafx.collections.ObservableListWrapper.get(ObservableListWrapper.java:89) at com.sun.javafx.collections.VetoableListDecorator.get(VetoableListDecorator.java:306) at javafx.scene.Parent.updateCachedBounds(Parent.java:1591) at javafx.scene.Parent.recomputeBounds(Parent.java:1535) at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1388) at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078) at javafx.scene.Node.updateGeomBounds(Node.java:3577)...
Support for Gradle is pretty advanced in most modern IDEs, which means they can import the modules based just on Gradle project definition. So I propose to remove IDE specific...
There seems to be a resource leak in JavaFX on linux. The issue leads to the X window becoming very unresponsive, the effect is increasing over time. Used: Linux kernel...