From 00b31d21f538c0c42b5ea06cb7df296d36b76f0f Mon Sep 17 00:00:00 2001 From: Visne <39844191+Visne@users.noreply.github.com> Date: Sun, 19 Sep 2021 22:03:02 +0200 Subject: [PATCH] Remove last HSplitContainer usage (#4655) --- Content.Client/PDA/PDABoundUserInterface.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Client/PDA/PDABoundUserInterface.cs b/Content.Client/PDA/PDABoundUserInterface.cs index 32e9e76ea3..4e32a06dd6 100644 --- a/Content.Client/PDA/PDABoundUserInterface.cs +++ b/Content.Client/PDA/PDABoundUserInterface.cs @@ -246,7 +246,7 @@ namespace Content.Client.PDA public BoxContainer UplinkTabContainer { get; } - protected readonly HSplitContainer CategoryAndListingsContainer; + protected readonly SplitContainer CategoryAndListingsContainer; private readonly IPrototypeManager _prototypeManager; @@ -374,8 +374,9 @@ namespace Content.Client.PDA }; //This contains both the panel of the category buttons and the listings box. - CategoryAndListingsContainer = new HSplitContainer + CategoryAndListingsContainer = new SplitContainer { + Orientation = SplitContainer.SplitOrientation.Horizontal, VerticalExpand = true, };