mirror of
https://github.com/ppy/osu
synced 2025-03-06 11:28:12 +00:00
Trim unnecessary parentheses
This commit is contained in:
parent
a5f7ca485b
commit
61fcb486a8
@ -181,7 +181,7 @@ namespace osu.Game.Graphics.Containers
|
|||||||
{
|
{
|
||||||
base.UpdateAfterChildren();
|
base.UpdateAfterChildren();
|
||||||
|
|
||||||
float fixedHeaderSize = (FixedHeader?.LayoutSize.Y ?? 0);
|
float fixedHeaderSize = FixedHeader?.LayoutSize.Y ?? 0;
|
||||||
float expandableHeaderSize = ExpandableHeader?.LayoutSize.Y ?? 0;
|
float expandableHeaderSize = ExpandableHeader?.LayoutSize.Y ?? 0;
|
||||||
|
|
||||||
float headerH = expandableHeaderSize + fixedHeaderSize;
|
float headerH = expandableHeaderSize + fixedHeaderSize;
|
||||||
|
Loading…
Reference in New Issue
Block a user