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) protected override bool OnClick(ClickEvent e)
{ {
Checked.Value = !Checked.Value; Checked.Value = !Checked.Value;
return base.OnClick(e); return true;
} }
} }
} }