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

Merge pull request #25140 from peppy/manage-collections-drag-handles-bye-bye

Remove drag handles from manage collections dialog for now
This commit is contained in:
Bartłomiej Dach 2023-10-16 10:47:38 +02:00 committed by GitHub
commit ee3ddacf46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,13 @@ namespace osu.Game.Collections
public DrawableCollectionListItem(Live<BeatmapCollection> item, bool isCreated)
: base(item)
{
ShowDragHandle.Value = item.IsManaged;
// For now we don't support rearranging and always use alphabetical sort.
// Change this to:
//
// ShowDragHandle.Value = item.IsManaged;
//
// if we want to support user sorting (but changes will need to be made to realm to persist).
ShowDragHandle.Value = false;
}
protected override Drawable CreateContent() => new ItemContent(Model);