mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Rename UserProfileData
-related symbols
This commit is contained in:
@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
||||
{
|
||||
public partial class LevelProgressBar : CompositeDrawable, IHasTooltip
|
||||
{
|
||||
public readonly Bindable<UserProfileData?> UserProfile = new Bindable<UserProfileData?>();
|
||||
public readonly Bindable<UserProfileData?> UserProfileData = new Bindable<UserProfileData?>();
|
||||
|
||||
public LocalisableString TooltipText { get; }
|
||||
|
||||
@ -56,7 +56,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
||||
}
|
||||
};
|
||||
|
||||
UserProfile.BindValueChanged(user => updateProgress(user.NewValue?.User));
|
||||
UserProfileData.BindValueChanged(data => updateProgress(data.NewValue?.User));
|
||||
}
|
||||
|
||||
private void updateProgress(APIUser? user)
|
||||
|
Reference in New Issue
Block a user