Return true on click

This commit is contained in:
Andrei Zavatski
2020-07-14 21:18:46 +03:00
parent e64604f335
commit 85c8757572

View File

@ -25,7 +25,7 @@ namespace osu.Game.Overlays.Comments.Buttons
protected override bool OnClick(ClickEvent e) protected override bool OnClick(ClickEvent e)
{ {
Expanded.Toggle(); Expanded.Toggle();
return base.OnClick(e); return true;
} }
} }
} }