From 6d86e7f294cb770053d064ae415f5b6d159fc2d8 Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 6 Jan 2021 11:27:05 +0000 Subject: [PATCH] Fixes #1071. Toplevel.GetTopLevelSubviews (). Changed from HashSet to IList. --- Terminal.Gui/Core/Toplevel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/Core/Toplevel.cs b/Terminal.Gui/Core/Toplevel.cs index 19b133ef9..a779accc6 100644 --- a/Terminal.Gui/Core/Toplevel.cs +++ b/Terminal.Gui/Core/Toplevel.cs @@ -278,7 +278,7 @@ namespace Terminal.Gui { return null; } - HashSet views = new HashSet (); + IList views = new List (); foreach (var v in SuperView.Subviews) { views.Add (v);