mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-30 09:47:58 +01:00
Fixes #1071. Toplevel.GetTopLevelSubviews (). Changed from HashSet<View> to IList<View>.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user