Refactor to replace existing panels

This commit is contained in:
Andrei Zavatski
2020-03-04 14:58:15 +03:00
parent f8f13a2f28
commit 6631b07442
15 changed files with 175 additions and 560 deletions

View File

@ -54,7 +54,7 @@ namespace osu.Game.Tests.Visual.Online
API.Logout();
localUser = API.LocalUser.GetBoundCopy();
localUser.BindValueChanged(user => { userPanelArea.Child = new UserPanel(user.NewValue) { Width = 200 }; }, true);
localUser.BindValueChanged(user => { userPanelArea.Child = new UserGridPanel(user.NewValue) { Width = 200 }; }, true);
AddStep("logout", API.Logout);
}