Add comment highlighting reason for blocking mouse down

This commit is contained in:
Joseph Madamba 2023-01-12 19:32:53 -08:00
parent a16050534d
commit 5a38abe679

View File

@ -92,6 +92,8 @@ namespace osu.Game.Overlays.Volume
protected override bool OnMouseDown(MouseDownEvent e)
{
base.OnMouseDown(e);
// Block mouse down to avoid dismissing overlays sitting behind the mute button
return true;
}
}