[PR #3371] Get rid of the SCREEN_INFORMATION::LineChar array #25344

Open
opened 2026-01-31 09:08:54 +00:00 by claunia · 0 comments
Owner

Original Pull Request: https://github.com/microsoft/terminal/pull/3371

State: closed
Merged: Yes


Summary of the Pull Request

The LineChar array was used to hold a set of the Unicode characters required to draw the borders of a box. The array was never updated with different values, so there was no need for that level of indirection. This PR gets rid of the LineChar array and just uses the appropriate Unicode constants directly.

PR Checklist

Detailed Description of the Pull Request / Additional comments

The only place the LineChar values were used was in the _DrawBorder method of the Popup class, so I've just replaced all of those references with the appropriate Unicode constants, then removed the LineChar array, and it's initialization code, from the SCREEN_INFORMATION class.

Validation Steps Performed

I've checked that the borders still render correctly by viewing the command history dialog (F7) in a cmd.exe shell.

**Original Pull Request:** https://github.com/microsoft/terminal/pull/3371 **State:** closed **Merged:** Yes --- <!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request The `LineChar` array was used to hold a set of the Unicode characters required to draw the borders of a box. The array was never updated with different values, so there was no need for that level of indirection. This PR gets rid of the `LineChar` array and just uses the appropriate Unicode constants directly. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist * [x] Closes #3366 * [x] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA * [ ] Tests added/passed * [ ] Requires documentation to be updated * [x] I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan. Issue number where discussion took place: #3366 <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments The only place the `LineChar` values were used was in the [`_DrawBorder`](https://github.com/microsoft/terminal/blob/9b92986b49bed8cc41fde4d6ef080921c41e6d9e/src/host/popup.cpp#L87) method of the `Popup` class, so I've just replaced all of those references with the appropriate Unicode constants, then removed the `LineChar` array, and it's initialization code, from the `SCREEN_INFORMATION` class. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I've checked that the borders still render correctly by viewing the command history dialog (F7) in a cmd.exe shell.
claunia added the pull-request label 2026-01-31 09:08:54 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#25344