@@ -18,7 +18,7 @@ namespace osu.Game.Overlays.Dashboard.Friends
1818{
1919 public partial class FriendsList : CompositeDrawable
2020 {
21- public readonly IBindable < OnlineStatus > OnlineStream = new Bindable < OnlineStatus > ( ) ;
21+ public readonly IBindable < OnlineStatus > StatusFilter = new Bindable < OnlineStatus > ( ) ;
2222 public readonly IBindable < UserSortCriteria > SortCriteria = new Bindable < UserSortCriteria > ( ) ;
2323 public readonly IBindable < string > SearchText = new Bindable < string > ( ) ;
2424
@@ -61,7 +61,7 @@ protected override void LoadComplete()
6161 friendPresences . BindCollectionChanged ( onFriendPresencesChanged ) ;
6262
6363 SearchText . BindValueChanged ( onSearchTextChanged , true ) ;
64- OnlineStream . BindValueChanged ( onFriendsStreamChanged , true ) ;
64+ StatusFilter . BindValueChanged ( onStatusFilterChanged , true ) ;
6565 }
6666
6767 private void onFriendPresencesChanged ( object ? sender , NotifyDictionaryChangedEventArgs < int , UserPresence > e )
@@ -80,7 +80,7 @@ private void onSearchTextChanged(ValueChangedEvent<string> search)
8080 searchContainer . SearchTerm = search . NewValue ;
8181 }
8282
83- private void onFriendsStreamChanged ( ValueChangedEvent < OnlineStatus > stream )
83+ private void onStatusFilterChanged ( ValueChangedEvent < OnlineStatus > status )
8484 {
8585 updatePanelVisibilities ( ) ;
8686 }
@@ -89,7 +89,7 @@ private void updatePanelVisibilities()
8989 {
9090 foreach ( var panel in searchContainer )
9191 {
92- switch ( OnlineStream . Value )
92+ switch ( StatusFilter . Value )
9393 {
9494 case OnlineStatus . All :
9595 panel . CanBeShown . Value = true ;
0 commit comments