Merge pull request #23385 from Joehuu/scroll-back-button-block-hover

Fix overlay scroll back button not absorbing hover from behind
This commit is contained in:
Dean Herbert 2023-05-03 16:28:05 +09:00 committed by GitHub
commit ff28d941b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,6 +185,12 @@ namespace osu.Game.Overlays
content.ScaleTo(1, 1000, Easing.OutElastic);
base.OnMouseUp(e);
}
protected override bool OnHover(HoverEvent e)
{
base.OnHover(e);
return true;
}
}
}
}