FXCollections.sort
on an empty list
Tooltip
(or PopupControl
) with a pane as content. A memory leak occurs if you change the tooltip's content. The condition is that the tooltip has been opened once and is (unassuming) not open during the content change.
Based on your description, this is as designed, so I don't think that there is a bug here. – Kevin Rushforth
scrollPane.setMinViewportWidth(0.1);
. This should trigger the scroll pane to always reserve space for the scroll bars, even when they are not currently visible.
window.setX(window.getX());
ObservableList#setAll
, the previously selected value is cleared. This is not supposed to happen and did not happen before OpenJFX 17.
#selectedIndexProperty
of the ComboBox's SelectionModel .
Bindings#getContentBindings
lose their selected value when the backing list has its contents changed via ObservableList#setAll
. The ComboBox value remains unchanged if the backing list is set via ComboBox#setItems
instead of using a content binding.
showingProperty
before it is shown for the first time, and the Stage's content contains a ProgressIndicator
, the listener will NOT be triggered for the first showing==true call (all subsequent calls will trigger the listener).
ProgressIndicator
does not cause the issue anymore in JFX11+. However, the bug was reproduceable for us with JFX17+. showingProperty
(does not have to do anything, must just be present)
Stage#setOnShowing
instead of a listener on the showingProperty
checkListView.getCheckModel().getCheckedItems().addListener(new ListChangeListener…
CheckListView
should not be used if there are bugs this essential open since 2014