Skip to content

fix(tui): prevent sidebar selection copy bleed - #41713

Open
nayafyt wants to merge 1 commit into
anomalyco:devfrom
nayafyt:selection-copy-fix
Open

fix(tui): prevent sidebar selection copy bleed#41713
nayafyt wants to merge 1 commit into
anomalyco:devfrom
nayafyt:selection-copy-fix

Conversation

@nayafyt

@nayafytnayafyt commented Aug 11, 2026

Copy link
Copy Markdown

Issue for this PR

Closes#41692

Type of change

  • Bug fix
  • New feature
  • Refactor / code improvement
  • Documentation

What does this PR do?

This fixes a TUI text-selection bug where selecting conversation text could also include the right Context sidebar text in clipboard output.

Changes in this PR:

  • Mark the sidebar subtree as non-selectable in the session sidebar implementation.
  • Add a regression test to verify the subtree is recursively non-selectable.

Why this works:

  • OpenTUI selection can traverse selectable siblings during drag.
  • Making the sidebar subtree non-selectable removes sidebar text from selection candidates, so copied selection stays scoped to intended content.

How did you verify your code works?

  • Ran: ./script/bun-docker.sh run --cwd packages/tui test test/util/sidebar-selection.test.ts
  • Ran: ./script/bun-docker.sh run --cwd packages/tui typecheck
  • Manual behavior check in TUI: selecting conversation text no longer copies Context sidebar text.

Screenshots / recordings

Screenshot 2026-08-11 123209

Checklist

  • I have tested my changes locally
  • I have not included unrelated changes in this PR

If you do not follow this template your PR will be automatically rejected.

@github-actionsgithub-actionsBot added needs:compliance This means the issue will auto-close after 2 hours. and removed needs:compliance This means the issue will auto-close after 2 hours. labels Aug 11, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Thanks for updating your PR! It now meets our contributing guidelines. 👍

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

TUI text selection includes adjacent context pane

1 participant

@nayafyt