Fixed build warnings and ensured tests run

This commit is contained in:
Charlie Kindel
2020-10-21 08:49:34 -06:00
parent be7febc604
commit 9c0a8529a6
5 changed files with 7 additions and 7 deletions

View File

@@ -173,7 +173,7 @@ namespace Terminal.Gui {
var scrRect = ViewToScreen (new Rect (0, 0, Frame.Width, Frame.Height));
// BUGBUG: Why do we draw the frame twice? This call is here to clear the content area, I think. Why not just clear that area?
if (NeedDisplay != null && !NeedDisplay.IsEmpty) {
if (!NeedDisplay.IsEmpty) {
Driver.SetAttribute (ColorScheme.Normal);
Driver.DrawWindowFrame (scrRect, padding + 1, padding + 1, padding + 1, padding + 1, border: true, fill: true);
}