1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

Show drag handle by default on main class

This commit is contained in:
Joehu 2020-09-10 11:11:45 -07:00
parent 6c9fcae69f
commit 370f22f975
2 changed files with 1 additions and 3 deletions

View File

@ -44,7 +44,7 @@ namespace osu.Game.Graphics.Containers
/// <summary>
/// Whether the drag handle should be shown.
/// </summary>
protected readonly Bindable<bool> ShowDragHandle = new Bindable<bool>();
protected readonly Bindable<bool> ShowDragHandle = new Bindable<bool>(true);
private Container handleContainer;
private PlaylistItemHandle handle;

View File

@ -39,8 +39,6 @@ namespace osu.Game.Overlays.Music
Padding = new MarginPadding { Left = 5 };
FilterTerms = item.Metadata.SearchableTerms;
ShowDragHandle.Value = true;
}
[BackgroundDependencyLoader]