mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-31 02:08:03 +01:00
Fix not calling base constructor
This commit is contained in:
@@ -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));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user