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

return true since we are handling the action

This commit is contained in:
LastExceed 2018-09-15 18:00:47 +02:00
parent 9f546bd484
commit fce9740f28

View File

@ -148,7 +148,7 @@ namespace osu.Game.Overlays.Chat
{
if (args.Button == MouseButton.Middle)
closeButton.Action();
return base.OnMouseUp(state, args);
return true;
}
protected override bool OnHover(InputState state)