Fix missed test scene update

This commit is contained in:
Dean Herbert 2021-02-09 18:48:50 +09:00
parent 1670766633
commit 17475e60b0
1 changed files with 1 additions and 3 deletions

View File

@ -25,7 +25,7 @@ public TestSceneRankingsOverlay()
Add(rankingsOverlay = new TestRankingsOverlay Add(rankingsOverlay = new TestRankingsOverlay
{ {
Country = { BindTarget = countryBindable }, Country = { BindTarget = countryBindable },
Scope = { BindTarget = scope }, Header = { Current = { BindTarget = scope } },
}); });
} }
@ -65,8 +65,6 @@ public void TestHide()
private class TestRankingsOverlay : RankingsOverlay private class TestRankingsOverlay : RankingsOverlay
{ {
public new Bindable<Country> Country => base.Country; public new Bindable<Country> Country => base.Country;
public new Bindable<RankingsScope> Scope => base.Scope;
} }
} }
} }