Re: Show a stage on a second and third monitor, wrong order in JavaFX Screen.getScreens()

2021-01-08 Thread Davide Perini
Forgive me, it was my fault, JavaFx starts from index 0. Regards, Davide Il 09/01/2021 02:38, Davide Perini ha scritto: Hi all, I have a triple display setup. I want to display a stage on the second and third monitor. To do this I use the displayNumber variable and this small snippet for (Scr

Show a stage on a second and third monitor, wrong order in JavaFX Screen.getScreens()

2021-01-08 Thread Davide Perini
Hi all, I have a triple display setup. I want to display a stage on the second and third monitor. To do this I use the displayNumber variable and this small snippet for (Screen screen : Screen.getScreens()) { Rectangle2D bounds = screen.getVisualBounds(); if (index == displayNumber) {

Re: RFR: 8165749: java.lang.RuntimeException: dndGesture.dragboard is null in dragDrop

2021-01-08 Thread Kevin Rushforth
On Wed, 6 Jan 2021 17:40:43 GMT, Jose Pereda wrote: >> modules/javafx.graphics/src/main/java/javafx/scene/Scene.java line 3788: >> >>> 3786: //old gesture ended and new one started >>> 3787: gestureStarted = true; >>> 3788: