Browse Source

Make fast scroll buttons deactivate with normal page up/down buttons.

Stephen Damm 6 years ago
parent
commit
5c66ec68ac
1 changed files with 2 additions and 0 deletions
  1. 2 0
      SongBrowserPlugin/UI/SongBrowserUI.cs

+ 2 - 0
SongBrowserPlugin/UI/SongBrowserUI.cs

@@ -499,7 +499,9 @@ namespace SongBrowserPlugin.UI
         {
             // Refresh the fast scroll buttons
             _pageUpTenPercent.interactable = _tableViewPageUpButton.interactable;
+            _pageUpTenPercent.gameObject.SetActive(_tableViewPageUpButton.IsActive());
             _pageDownTenPercent.interactable = _tableViewPageDownButton.interactable;
+            _pageDownTenPercent.gameObject.SetActive(_tableViewPageDownButton.IsActive());
         }
 
         /// <summary>