30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 9ccd841f86745f54ebe7d51eec591552a1e58f56 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 215700d87c..2259238df8 100644
|
|
--- a/osu.Game/Screens/Select/SongSelect.cs
|
|
+++ b/osu.Game/Screens/Select/SongSelect.cs
|
|
@@ -307,11 +307,6 @@ private void load(AudioManager audio, DialogOverlay dialog, OsuColour colours, S
|
|
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.29.3
|
|
|