nixos-config/pkgs/osu-lazer/0002-Remove-random-song-but...

30 lines
1.1 KiB
Diff

From 9e2055a56686cfb0231915289bf977a590d5b10d Mon Sep 17 00:00:00 2001
From: Simon Bruder <simon@sbruder.de>
Date: Fri, 9 Apr 2021 12:02:44 +0200
Subject: [PATCH 2/2] Remove random song button from footer
I often click it accidentally.
---
osu.Game/Screens/Select/SongSelect.cs | 5 -----
1 file changed, 5 deletions(-)
diff --git a/osu.Game/Screens/Select/SongSelect.cs b/osu.Game/Screens/Select/SongSelect.cs
index 7abcbfca42..7bbfac6a85 100644
--- a/osu.Game/Screens/Select/SongSelect.cs
+++ b/osu.Game/Screens/Select/SongSelect.cs
@@ -305,11 +305,6 @@ protected override void LoadComplete()
protected virtual IEnumerable<(FooterButton, OverlayContainer)> CreateFooterButtons() => new (FooterButton, OverlayContainer)[]
{
(new FooterButtonMods { Current = Mods }, ModSelect),
- (new FooterButtonRandom
- {
- NextRandom = () => Carousel.SelectNextRandom(),
- PreviousRandom = Carousel.SelectPreviousRandom
- }, null),
(new FooterButtonOptions(), BeatmapOptions)
};
--
2.36.0