On Wed, 11 Mar 2026 01:00:33 GMT, Ziad El Midaoui <[email protected]>
wrote:
>> The bug occurs when `showRoot` is set to false on a root with no children,
>> the expanded item count drops is 0 causing `isFocused(0)` to return false
>> even though `focusedIndex` is still 0. When items are added afterwards the
>> `treeItemListener` sees `focusedIndex=0` and incorrectly shifts it to 1
>> placing the focus on second item of the TreeView.
>> The fix replaces `isFocused(0)` with `getFocusedIndex() >= 0`, which reads
>> the raw stored index.
>
> Ziad El Midaoui has updated the pull request incrementally with one
> additional commit since the last revision:
>
> minor changes
tests/system/src/test/java/test/robot/javafx/scene/treeview/TreeViewInitialFocusTest.java
line 60:
> 58: import static org.junit.jupiter.api.Assertions.assertNull;
> 59:
> 60: public class TreeViewInitialFocusTest {
Same here, can this be a simple JUnit Headless test instead?
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/2095#discussion_r2925224515