mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
fix missing text appearing when request returns nothing but beatmaps are already there
This commit is contained in:
@ -40,7 +40,7 @@ namespace osu.Game.Overlays.Profile.Sections.Beatmaps
|
|||||||
ShowMoreButton.FadeTo(sets.Count == ItemsPerPage ? 1 : 0);
|
ShowMoreButton.FadeTo(sets.Count == ItemsPerPage ? 1 : 0);
|
||||||
ShowMoreLoading.Hide();
|
ShowMoreLoading.Hide();
|
||||||
|
|
||||||
if (!sets.Any())
|
if (!sets.Any() && VisiblePages == 1)
|
||||||
{
|
{
|
||||||
MissingText.Show();
|
MissingText.Show();
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user