Check accessibleChild for null in defaultAccessibilityFocusTarget#3158
Merged
Alexander Maryanovsky (m-sasha) merged 1 commit intoJun 25, 2026
Merged
Conversation
…cessibilityFocusTarget
Igor Demin (igordmn)
approved these changes
Jun 25, 2026
Alexander Maryanovsky (m-sasha)
merged commit Jun 25, 2026
81c2b3c
into
jb-main
40 of 43 checks passed
Alexander Maryanovsky (m-sasha)
deleted the
m-sasha/fix-defaultAccessibilityFocusTarget
branch
June 25, 2026 11:50
Apolo (ApoloApps)
pushed a commit
to ApoloApps/compose-multiplatform-core
that referenced
this pull request
Jul 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Check accessibleChild for
nullindefaultAccessibilityFocusTargetbefore adding it to the queue.Unfortunately without a reproducer I can't fix the underlying reason for the child being
null. It's coming from eitherComposeAccessibleComponent.getAccessibleChild, or some non-CMP Swing component.But the impact of sometimes returning
nullfromdefaultAccessibilityFocusTargetwhen we shouldn't isn't that significant to warrant a big investigation.Fixes https://youtrack.jetbrains.com/issue/CMP-10363
Testing
N/A
Release Notes
Fixes - Desktop
nullaccessible child in the Swing hierarchy while looking for a component to switch a11y focus to, after the currently focused a11y component has been removed.