From 973093b5220ff8cee9b02f5e11ee43447466551d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 20 Feb 2020 18:32:28 +0900 Subject: [PATCH] Fix non-selectable playlist items not forwarding clicks to children --- osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs b/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs index ca85aec4e4..a7ed1f5846 100644 --- a/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs +++ b/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs @@ -52,7 +52,7 @@ public class DrawableRoomPlaylistItem : OsuRearrangeableListItem private readonly bool allowEdit; private readonly bool allowSelection; - protected override bool ShouldBeConsideredForInput(Drawable child) => allowEdit || SelectedItem.Value == Model; + protected override bool ShouldBeConsideredForInput(Drawable child) => allowEdit || !allowSelection || SelectedItem.Value == Model; public DrawableRoomPlaylistItem(PlaylistItem item, bool allowEdit, bool allowSelection) : base(item)