Browse Source

Make all TextElement properties affect TextPresenter's render

pull/9631/head
SKProCH 3 years ago
parent
commit
4e6f379334
  1. 3
      src/Avalonia.Controls/Presenters/TextPresenter.cs

3
src/Avalonia.Controls/Presenters/TextPresenter.cs

@ -110,7 +110,8 @@ namespace Avalonia.Controls.Presenters
static TextPresenter()
{
AffectsRender<TextPresenter>(CaretBrushProperty, SelectionBrushProperty);
AffectsRender<TextPresenter>(CaretBrushProperty, SelectionBrushProperty,
TextElement.FontFamilyProperty, TextElement.FontSizeProperty, TextElement.FontStyleProperty, TextElement.FontWeightProperty, TextElement.FontStretchProperty, TextElement.ForegroundProperty);
}
public TextPresenter()

Loading…
Cancel
Save