Fixes #1071. Toplevel.GetTopLevelSubviews (). Changed from HashSet<View> to IList<View>.

This commit is contained in:
BDisp
2021-01-06 11:27:05 +00:00
parent c00637fb1e
commit 6d86e7f294

View File

@@ -278,7 +278,7 @@ namespace Terminal.Gui {
return null;
}
HashSet<View> views = new HashSet<View> ();
IList<View> views = new List<View> ();
foreach (var v in SuperView.Subviews) {
views.Add (v);