openjdk-jfx icon indicating copy to clipboard operation
openjdk-jfx copied to clipboard

The openjfx repo has moved to:

Results 100 openjdk-jfx issues
Sort by recently updated
recently updated
newest added

As of Java 12, there is no API way to specify the animation speed of a TitledPane. It would be a nice addition to have a new public property to...

I already posted this possible bug to the Eclipse bug database: https://bugs.eclipse.org/bugs/show_bug.cgi?id=546011 The bug occurs if you embedd JavaFX in SWT and only on Linux with a HighDPI display (or...

On embedded devices, often a cursor is not a valid modality, yet a cursor is still initialised by the openjfx stack in an application. This for us is creating startup...

See these lines in ListCell.java ```java private final ListChangeListener itemsListener = c -> { boolean doUpdate = false; while (c.next()) { // RT-35395: We only update the item in this...

It isn't possible to initialize, e.g., a ComboBox with a set of translated strings from FXML. ``` ```` It'd be great if this was supported.

I am able to load a javascript file "main.js" using its absolute file path file:/D:/EclipseJava/workspace/javafxDemo/target/classes/javafxDemo/main.js ``` String url = JavaFxApp.class.getResource("./main.js").toExternalForm(); var initialBrowserContent = // "" + // " " +...

I am able to load a javascript file "main.js" (that is located in the same folder as my Java main class) and has the content `alert("hello from javascript file");` I...

Hi This seems a always bug. Below is the code: ``` public class PrismBug extends Application { double FACTOR = 1.1; public static void main(String[] args) { launch(args); } @Override...

bug

The symbolic buttons from Material Design (https://getmdl.io/components/index.html#buttons-section) are not displayed correctly in WebView, I have tested it in JavaFX 8, 11, 12, 13 - e.g.: ![image](https://user-images.githubusercontent.com/5808032/58269977-fae75680-7d88-11e9-8359-57e261a7a454.png) instead: ![image](https://user-images.githubusercontent.com/5808032/58269999-0dfa2680-7d89-11e9-8d65-e3dca51cb462.png)

the internal logic expects styleClass "negative" to be set, but as soon as a series is added the styleClass is reset to defaults. ``` public void testBarChart(Stage stage) throws Exception...