Merge pull request #117 from shargon/patch-1

Error on RemoveAll
This commit is contained in:
Miguel de Icaza
2018-08-01 23:32:16 -04:00
committed by GitHub

View File

@@ -499,9 +499,7 @@ namespace Terminal.Gui {
return;
while (subviews.Count > 0) {
var view = subviews [0];
Remove (view);
subviews.RemoveAt (0);
Remove (subviews[0]);
}
}