gluonhq / scenebuilder

Scene Builder is a visual, drag 'n' drop, layout tool for designing JavaFX application user interfaces.
https://gluonhq.com/products/scene-builder/
Other
748 stars 220 forks source link

fix: Fix NPE in accordion #772

Closed jperedadnr closed 3 weeks ago

jperedadnr commented 1 month ago

Issue

Fixes #771

Using the inspector menu button to select view modes, the accordion panes are removed and added, based on selection. There is an instant where the accordion.getExpandedPane() value is null, and that should be filtered out from the switch expression in InspectorPanelController::expandedSectionChanged

Progress