fix(tui): rename ActorSelectionOverlay._render to avoid shadowing Textual Widget._render #11182

Closed
HAL9000 wants to merge 1 commits from fix/pr-11042-rename-render into master

1 Commits

Author SHA1 Message Date
HAL9000 af007b1c62 fix(tui): rename ActorSelectionOverlay._render to _refresh_display
CI / push-validation (pull_request) Successful in 1m3s
CI / helm (pull_request) Successful in 1m8s
CI / build (pull_request) Failing after 1m27s
CI / unit_tests (pull_request) Failing after 1m28s
CI / security (pull_request) Failing after 1m29s
CI / quality (pull_request) Failing after 1m29s
CI / typecheck (pull_request) Failing after 1m29s
CI / lint (pull_request) Failing after 1m29s
CI / integration_tests (pull_request) Failing after 1m27s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 4s
The `ActorSelectionOverlay` class inherits from `textual.widgets.Static`,
which already defines a `_render()` method used for rendering widget content.
Our private `_render()` was shadowing that method, causing incorrect repaint
behavior and interfering with Textual's layout pass. This renames the internal
method to `_refresh_display()` while keeping the public API unchanged.\n\nISSUES CLOSED: #11042
2026-05-15 01:23:33 +00:00