Fix not calling base constructor

This commit is contained in:
Thomas
2023-02-24 19:42:39 +00:00
parent 971062c93d
commit 3c3a014814

View File

@@ -86,7 +86,7 @@ namespace Terminal.Gui {
/// <param name="title">Title.</param>
/// <param name="views">Views.</param>
/// <param name="border">The <see cref="Border"/>.</param>
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));