mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Remove a lot of loading animation calls
This commit is contained in:
@ -122,16 +122,12 @@ namespace osu.Game.Overlays
|
||||
API.Queue(getUsersRequest = userRequest);
|
||||
break;
|
||||
}
|
||||
|
||||
loading.Show();
|
||||
}
|
||||
|
||||
private void recreatePanels(PanelDisplayStyle displayStyle)
|
||||
{
|
||||
clearPanels();
|
||||
|
||||
loading.Show();
|
||||
|
||||
if (Users == null)
|
||||
{
|
||||
loading.Hide();
|
||||
@ -178,8 +174,6 @@ namespace osu.Game.Overlays
|
||||
|
||||
private void updateUsers(IEnumerable<User> newUsers)
|
||||
{
|
||||
loading.Show();
|
||||
|
||||
var sortDirection = Filter.DisplayStyleControl.Dropdown.Current.Value;
|
||||
|
||||
IEnumerable<User> sortedUsers = newUsers;
|
||||
@ -218,6 +212,8 @@ namespace osu.Game.Overlays
|
||||
|
||||
private void clearPanels()
|
||||
{
|
||||
loading.Show();
|
||||
|
||||
if (panels != null)
|
||||
{
|
||||
panels.Expire();
|
||||
|
Reference in New Issue
Block a user