Tons of stuff

This commit is contained in:
Tig
2024-10-23 15:15:53 -06:00
parent 008d49788e
commit b31339da02
91 changed files with 1654 additions and 1025 deletions

View File

@@ -289,7 +289,7 @@ public class ScenarioTests : TestsAllViews
// Remove existing class, if any
if (_curView != null)
{
_curView.LayoutComplete -= LayoutCompleteHandler;
_curView.SubviewsLaidOut -= LayoutCompleteHandler;
_hostPane.Remove (_curView);
_curView.Dispose ();
_curView = null;
@@ -594,7 +594,7 @@ public class ScenarioTests : TestsAllViews
UpdateSettings (view);
UpdateTitle (view);
view.LayoutComplete += LayoutCompleteHandler;
view.SubviewsLaidOut += LayoutCompleteHandler;
return view;
}