diff --git a/Terminal.Gui/Views/Label.cs b/Terminal.Gui/Views/Label.cs index 22866f382..232a9efcb 100644 --- a/Terminal.Gui/Views/Label.cs +++ b/Terminal.Gui/Views/Label.cs @@ -227,6 +227,7 @@ namespace Terminal.Gui { public virtual ustring Text { get => text; set { + Clear (new Rect (Frame.Location, new Size (text.Length, Frame.Height))); text = value; recalcPending = true; SetNeedsDisplay ();