We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$
NamedHighlightedTextBlock
1 parent 6517e78 commit ee2e7d0Copy full SHA for ee2e7d0
src/Views/NameHighlightedTextBlock.cs
@@ -55,9 +55,10 @@ protected override Size MeasureOverride(Size availableSize)
55
if (string.IsNullOrEmpty(text))
56
return base.MeasureOverride(availableSize);
57
58
+ var trimmed = text.Replace("$", "");
59
var typeface = new Typeface(FontFamily);
60
var formatted = new FormattedText(
- Text,
61
+ trimmed,
62
CultureInfo.CurrentCulture,
63
FlowDirection.LeftToRight,
64
typeface,
0 commit comments