2021-08-07 13:22:16 +02:00
|
|
|
From 9ebcc0ec1bd0bd6bb54f2516290a12bf8ed4def7 Mon Sep 17 00:00:00 2001
|
2021-04-09 12:09:45 +02:00
|
|
|
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.
|
|
|
|
---
|
2021-04-17 10:24:04 +02:00
|
|
|
osu.Game/Screens/Select/SongSelect.cs | 5 -----
|
|
|
|
1 file changed, 5 deletions(-)
|
2021-04-09 12:09:45 +02:00
|
|
|
|
|
|
|
diff --git a/osu.Game/Screens/Select/SongSelect.cs b/osu.Game/Screens/Select/SongSelect.cs
|
2021-08-07 13:22:16 +02:00
|
|
|
index 270addc8e6..78a03a37a2 100644
|
2021-04-09 12:09:45 +02:00
|
|
|
--- a/osu.Game/Screens/Select/SongSelect.cs
|
|
|
|
+++ b/osu.Game/Screens/Select/SongSelect.cs
|
2021-08-07 13:22:16 +02:00
|
|
|
@@ -305,11 +305,6 @@ private void load(AudioManager audio, DialogOverlay dialog, OsuColour colours, M
|
2021-04-09 12:09:45 +02:00
|
|
|
protected virtual IEnumerable<(FooterButton, OverlayContainer)> CreateFooterButtons() => new (FooterButton, OverlayContainer)[]
|
|
|
|
{
|
|
|
|
(new FooterButtonMods { Current = Mods }, ModSelect),
|
2021-04-17 10:24:04 +02:00
|
|
|
- (new FooterButtonRandom
|
|
|
|
- {
|
|
|
|
- NextRandom = () => Carousel.SelectNextRandom(),
|
|
|
|
- PreviousRandom = Carousel.SelectPreviousRandom
|
|
|
|
- }, null),
|
2021-04-09 12:09:45 +02:00
|
|
|
(new FooterButtonOptions(), BeatmapOptions)
|
|
|
|
};
|
|
|
|
|
|
|
|
--
|
2021-08-07 13:22:16 +02:00
|
|
|
2.31.1
|
2021-04-09 12:09:45 +02:00
|
|
|
|