Remove encapsulation for previously protected XAML UI fields (#4975)
This commit is contained in:
@@ -1,21 +1,25 @@
|
||||
<PanelContainer xmlns="https://spacestation14.io"
|
||||
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
||||
HorizontalExpand="True">
|
||||
<Button Name="MainButtonProtected"
|
||||
<Button Name="MainButton"
|
||||
Access="Public"
|
||||
HorizontalExpand="True"
|
||||
VerticalExpand="True" />
|
||||
<BoxContainer Orientation="Horizontal"
|
||||
HorizontalExpand="True">
|
||||
<TextureRect Name="IconProtected"
|
||||
<TextureRect Name="Icon"
|
||||
Access="Public"
|
||||
MinSize="32 32"
|
||||
RectClipContent="True" />
|
||||
<Label Name="ProductNameProtected"
|
||||
<Label Name="ProductName"
|
||||
Access="Public"
|
||||
HorizontalExpand="True" />
|
||||
<PanelContainer>
|
||||
<PanelContainer.PanelOverride>
|
||||
<gfx:StyleBoxFlat BackgroundColor="#25252A" />
|
||||
</PanelContainer.PanelOverride>
|
||||
<Label Name="PointCostProtected"
|
||||
<Label Name="PointCost"
|
||||
Access="Public"
|
||||
MinSize="40 32"
|
||||
Align="Right" />
|
||||
</PanelContainer>
|
||||
|
||||
Reference in New Issue
Block a user