mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Trim unnecessary parentheses
This commit is contained in:
@ -181,7 +181,7 @@ namespace osu.Game.Graphics.Containers
|
||||
{
|
||||
base.UpdateAfterChildren();
|
||||
|
||||
float fixedHeaderSize = (FixedHeader?.LayoutSize.Y ?? 0);
|
||||
float fixedHeaderSize = FixedHeader?.LayoutSize.Y ?? 0;
|
||||
float expandableHeaderSize = ExpandableHeader?.LayoutSize.Y ?? 0;
|
||||
|
||||
float headerH = expandableHeaderSize + fixedHeaderSize;
|
||||
|
Reference in New Issue
Block a user