mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Fix initial scroll.
This commit is contained in:
@ -76,6 +76,11 @@ namespace osu.Game.Users
|
|||||||
|
|
||||||
tabs.Current.ValueChanged += s =>
|
tabs.Current.ValueChanged += s =>
|
||||||
{
|
{
|
||||||
|
if (lastSection == null)
|
||||||
|
{
|
||||||
|
lastSection = tabs.Current.Value = sections[0];
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (lastSection != s)
|
if (lastSection != s)
|
||||||
{
|
{
|
||||||
lastSection = s;
|
lastSection = s;
|
||||||
|
Reference in New Issue
Block a user