fix(tui): keep prompt border continuous in compact terminals#600
fix(tui): keep prompt border continuous in compact terminals#600Olusammytee wants to merge 2 commits intoKilo-Org:devfrom
Conversation
|
Thanks for your contribution! This PR doesn't have a linked issue. All PRs must reference an existing issue. Please:
See CONTRIBUTING.md for details. |
Code Review SummaryStatus: No Issues Found | Recommendation: Merge This PR makes two small cosmetic changes to the TUI prompt component, replacing the half-height vertical box-drawing character Files Reviewed (1 files)
|
There was a problem hiding this comment.
Pull request overview
This PR fixes a visual issue where the vertical border near the input field appears split when the terminal window is resized to smaller heights. The fix ensures the border remains continuous by using the proper Unicode box drawing character throughout the prompt component.
Changes:
- Changed
bottomLeftborder character from "╹" to "┃" at the prompt bottom-left corner - Changed
verticalborder character from "╹" to "┃" for the 1-row separator segment when background elements are enabled
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Updated the PR description to include an explicit linked issue reference: Closes #438. |
|
Pushed a small cleanup follow-up: removed temporary inline comments from the two border-glyph lines while keeping behavior unchanged. |
Linked Issue\nCloses #438\n\n## Summary\n- use a continuous vertical border glyph at the prompt bottom-left corner\n- align the 1-row separator segment with the same border glyph when background elements are enabled\n- prevent the visual split seen in small terminal sizes\n\n## Testing\n- not run (visual TUI rendering fix)