From 1c3e8e37d382c7c79156ac11760148ba6f054d27 Mon Sep 17 00:00:00 2001 From: tznind Date: Mon, 20 Mar 2023 17:12:14 +0000 Subject: [PATCH] Fix malformed xmldoc and missing using statement --- Terminal.Gui/Core/View.cs | 4 ++-- Terminal.Gui/Views/FrameView.cs | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Terminal.Gui/Core/View.cs b/Terminal.Gui/Core/View.cs index c46393c43..8ea963ab1 100644 --- a/Terminal.Gui/Core/View.cs +++ b/Terminal.Gui/Core/View.cs @@ -2833,7 +2833,7 @@ namespace Terminal.Gui { /// /// Gets the dimensions required for ignoring a . - /// /// + /// /// public Size GetSizeNeededForTextWithoutHotKey () { @@ -2843,7 +2843,7 @@ namespace Terminal.Gui { /// /// Gets the dimensions required for accounting for a . - /// + /// /// public Size GetSizeNeededForTextAndHotKey () { diff --git a/Terminal.Gui/Views/FrameView.cs b/Terminal.Gui/Views/FrameView.cs index 61471e97e..72d578959 100644 --- a/Terminal.Gui/Views/FrameView.cs +++ b/Terminal.Gui/Views/FrameView.cs @@ -1,4 +1,5 @@ -using System.Linq; +using System; +using System.Linq; using System.Text.Json.Serialization; using NStack; using Terminal.Gui.Graphs;