mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #384] Different border styles for different primitives #284
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#284
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zmnpl on GitHub (Jan 11, 2020).
Original GitHub issue: https://github.com/rivo/tview/issues/384
Hi, not sure if it is a bug, intended, or just me missing some configuration options...
I do get different borders for different primitives. A form has a double line border, while a text view "only" has a single line. For a consistent experience I'd like to have them all use the same style. Is that something I can control through configuration?
Cheers!
@tslocum commented on GitHub (Jan 11, 2020):
Borders are drawn with a single line for non-focused, and a double line for focused primitives. See Box.Draw. Modifying Borders will allow you to achieve a consistent look.
@zmnpl commented on GitHub (Jan 11, 2020):
Focus ... I see :) Thank you for that!