mirror of
https://github.com/ppy/osu
synced 2025-01-14 10:01:14 +00:00
Remove redundant ternary expression
This commit is contained in:
parent
3b88afd069
commit
74176a6954
@ -71,7 +71,7 @@ namespace osu.Game.Graphics.Containers
|
||||
|
||||
protected override bool OnMouseDown(MouseDownEvent e)
|
||||
{
|
||||
closeOnMouseUp = !base.ReceivePositionalInputAt(e.ScreenSpaceMousePosition) ? true : false;
|
||||
closeOnMouseUp = !base.ReceivePositionalInputAt(e.ScreenSpaceMousePosition);
|
||||
|
||||
return base.OnMouseDown(e);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user