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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 3 deletions

View File

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