1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Merge pull request #18016 from smoogipoo/logo-drag-no-block-click

Don't block clicks when dragging on the osu! logo
This commit is contained in:
Dean Herbert 2022-04-29 12:33:44 +09:00 committed by GitHub
commit aa4f5c563f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -405,6 +405,8 @@ namespace osu.Game.Screens.Menu
private class DragContainer : Container
{
public override bool DragBlocksClick => false;
protected override bool OnDragStart(DragStartEvent e) => true;
protected override void OnDrag(DragEvent e)