Conversation
The terminal grid is drawn to a texture, so assistive tech saw each pane as an empty rectangle. TerminalPane now carries the visible screen as accessible text. - Slint's `accessibility` feature is requested per-target for Linux only. It is dropped workspace-wide because accesskit pins `windows 0.58` against wgpu-hal 29's `0.62` — a conflict that only exists when building for Windows, so the Windows resolution is untouched. - PaneItem.a11y-text carries the text; TerminalPane exposes it via accessible-role/label/value (read-only). - paneview fills it from the existing TerminalPane::screen_text(), gated by a11y_wanted() so it costs nothing when no assistive client is connected (HYPERPANES_A11Y=1 forces on, NO_AT_BRIDGE=1 forces off, else the GNOME toolkit-accessibility setting). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
The terminal grid is drawn to a texture, so assistive tech — screen readers, and
assistive automation like a desktop agent — sees each pane as an empty rectangle.
This hands it the visible screen as accessible text.
accessibilityfeature, Linux only. It is dropped workspace-wide becauseaccesskit pins
windows 0.58against wgpu-hal 29's0.62; that conflict onlyexists when building for Windows, so the feature is requested from
[target.'cfg(target_os = "linux")'.dependencies]and Windows resolution isuntouched.
PaneItem.a11y-textcarries the text;TerminalPaneexposes it throughaccessible-role/-label/-value, read-only.paneviewfills it from the existingTerminalPane::screen_text(), behinda11y_wanted()—HYPERPANES_A11Y=1forces on,NO_AT_BRIDGE=1forces off,otherwise the GNOME
toolkit-accessibilitysetting. Nothing is extracted whenno assistive client is connected.
cargo checkpasses inrs/crates/app. Verified in a scratch worktree at thiscommit alone, so it does not depend on anything else in flight.
🤖 Generated with Claude Code