Files
space-station-14/Content.Client/SmartFridge/SmartFridgeItem.xaml
Perry Fraser 78343b2dbb feat: allow removing empty smart fridge entries (#39195)
* feat: allow removing empty smart fridge entries

* review

---------

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
2026-01-09 14:48:38 +00:00

23 lines
748 B
XML

<BoxContainer xmlns="https://spacestation14.io"
Orientation="Horizontal"
HorizontalExpand="True"
SeparationOverride="4">
<SpriteView
Name="EntityView"
Margin="4 0 0 0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
MinSize="32 32"
/>
<Label Name="NameLabel"
SizeFlagsStretchRatio="3"
HorizontalExpand="True"
ClipText="True"/>
<TextureButton Name="RemoveButton"
StyleClasses="CrossButtonRed"
VerticalAlignment="Center"
Margin="0 0 10 0"
Scale="0.75 0.75"
Visible="True" />
</BoxContainer>