1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 17:24:10 +08:00

Return true on click

This commit is contained in:
Andrei Zavatski
2020-07-14 21:18:46 +03:00
Unverified
parent e64604f335
commit 85c8757572
@@ -25,7 +25,7 @@ namespace osu.Game.Overlays.Comments.Buttons
protected override bool OnClick(ClickEvent e)
{
Expanded.Toggle();
return base.OnClick(e);
return true;
}
}
}