From 13aeed15f95fa6585ff01eedaccc43b28ff656cb Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 18 Dec 2025 20:17:46 +0900 Subject: [PATCH] Remove button sound from sample toggle buttons The new ones added in this change don't play the UI sounds, likely because they make it nigh impossible to actually hear what the gameplay samples will sound like. This removes the same sounds from the existing buttons to match. --- .../Edit/Compose/Components/Timeline/SamplePointPiece.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Screens/Edit/Compose/Components/Timeline/SamplePointPiece.cs b/osu.Game/Screens/Edit/Compose/Components/Timeline/SamplePointPiece.cs index f4242e1fe0..7f7f749c44 100644 --- a/osu.Game/Screens/Edit/Compose/Components/Timeline/SamplePointPiece.cs +++ b/osu.Game/Screens/Edit/Compose/Components/Timeline/SamplePointPiece.cs @@ -572,7 +572,7 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline { foreach ((string sampleName, var bindable) in selectionSampleStates) { - yield return new DrawableTernaryButton + yield return new DrawableTernaryButton(null) { Current = bindable, Description = string.Empty,