1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

OnClick should actually handle the event

This commit is contained in:
Dean Herbert 2019-10-14 21:48:12 +09:00
parent 4e6ab1dad3
commit b7ddf160b4

View File

@ -126,7 +126,7 @@ namespace osu.Game.Overlays.Comments
protected override bool OnClick(ClickEvent e)
{
Checked.Value = !Checked.Value;
return base.OnClick(e);
return true;
}
}
}