Remove last HSplitContainer usage (#4655)

This commit is contained in:
Visne
2021-09-19 22:03:02 +02:00
committed by GitHub
parent 5451f9eda1
commit 00b31d21f5

View File

@@ -246,7 +246,7 @@ namespace Content.Client.PDA
public BoxContainer UplinkTabContainer { get; } public BoxContainer UplinkTabContainer { get; }
protected readonly HSplitContainer CategoryAndListingsContainer; protected readonly SplitContainer CategoryAndListingsContainer;
private readonly IPrototypeManager _prototypeManager; 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. //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, VerticalExpand = true,
}; };