Skip to content

Commit b28d72e

Browse files
committed
Add glyph suggestion for SeparatorSymbols
1 parent a1c9808 commit b28d72e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Terminal.Gui/Views/TableView/TableStyle.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,15 @@ public class TableStyle {
119119

120120
/// <summary>
121121
/// The symbol to add after each header value to visually seperate values (if not using vertical gridlines)
122+
/// <remarks>CM.Glyphs.VLine can be used to emulate vertical grindlines that highlight with <see cref="TableView.FullRowSelect"/></remarks>
122123
/// </summary>
123-
public Rune HeaderSeparatorSymbol { get; set; } = (Rune)' '; //CM.Glyphs.VLine;
124+
public Rune HeaderSeparatorSymbol { get; set; } = (Rune)' ';
124125

125126
/// <summary>
126127
/// The symbol to add after each cell value to visually seperate values (if not using vertical gridlines)
128+
/// <remarks>CM.Glyphs.VLine can be used to emulate vertical grindlines that highlight with <see cref="TableView.FullRowSelect"/></remarks>
127129
/// </summary>
128-
public Rune SeparatorSymbol { get; set; } = (Rune)' '; //CM.Glyphs.VLine;
130+
public Rune SeparatorSymbol { get; set; } = (Rune)' ';
129131

130132
/// <summary>
131133
/// The text representation that should be rendered for cells with the value <see cref="DBNull.Value"/>

0 commit comments

Comments
 (0)