diff --git a/MLEM.Ui/Elements/Paragraph.cs b/MLEM.Ui/Elements/Paragraph.cs index 11462c8..d73228c 100644 --- a/MLEM.Ui/Elements/Paragraph.cs +++ b/MLEM.Ui/Elements/Paragraph.cs @@ -76,7 +76,10 @@ namespace MLEM.Ui.Elements { this.CheckTextChange(); return this.displayedText; } - set => this.explicitlySetText = value; + set { + this.explicitlySetText = value; + this.CheckTextChange(); + } } /// /// If this paragraph should automatically adjust its width based on the width of the text within it