From: Wrexbe (Josh) <81056464+wrexbe@users.noreply.github.com> Date: Sun, 31 Mar 2024 08:51:02 +0000 (-0700) Subject: Make the buttons on the map ui not squished (#26604) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=ad438a7ac2216c6295cae97025b4204a9c2ae41f;p=space-station-14.git Make the buttons on the map ui not squished (#26604) Make the map ui work Co-authored-by: wrexbe --- diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index a8ec7b37a0..677092e191 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -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 + } + } } };