Make the buttons on the map ui not squished (#26604)

Make the map ui work

Co-authored-by: wrexbe <wrexbe@protonmail.com>
This commit is contained in:
Wrexbe (Josh)
2024-03-31 01:51:02 -07:00
committed by GitHub
parent 8337493526
commit ad438a7ac2

View File

@@ -113,10 +113,17 @@ public partial class NavMapControl : MapGridControl
}, },
VerticalExpand = false, VerticalExpand = false,
Children = Children =
{
new BoxContainer()
{
Orientation = BoxContainer.LayoutOrientation.Horizontal,
Children =
{ {
_zoom, _zoom,
_beacons, _beacons,
_recenter, _recenter
}
}
} }
}; };