From 3c3a0148147eccf44f9d905030ed8d9ba2ab8d2b Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 24 Feb 2023 19:42:39 +0000 Subject: [PATCH] Fix not calling base constructor --- Terminal.Gui/Views/FrameView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/Views/FrameView.cs b/Terminal.Gui/Views/FrameView.cs index 40f7967c0..8ae9b1412 100644 --- a/Terminal.Gui/Views/FrameView.cs +++ b/Terminal.Gui/Views/FrameView.cs @@ -86,7 +86,7 @@ namespace Terminal.Gui { /// Title. /// Views. /// The . - public FrameView (Rect frame, ustring title = null, View [] views = null, Border border = null) //: base (frame) + public FrameView (Rect frame, ustring title = null, View [] views = null, Border border = null) : base (frame) { //var cFrame = new Rect (1, 1, Math.Max (frame.Width - 2, 0), Math.Max (frame.Height - 2, 0));