mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-06-09 13:26:34 +02:00
3172ada563
* Move character preview handling into a specialized control Co-authored-by: Quantum-cross <7065792+Quantum-cross@users.noreply.github.com> * Restore job name that I accidentally removed from character picker buttons * Just resolve dependencies the standard way --------- Co-authored-by: Quantum-cross <7065792+Quantum-cross@users.noreply.github.com> Co-authored-by: Janet Blackquill <uhhadd@gmail.com>
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<ContainerButton xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:profile="clr-namespace:Content.Client.Lobby.UI.ProfileEditorControls"
|
|
xmlns:style="clr-namespace:Content.Client.Stylesheets">
|
|
<BoxContainer Orientation="Horizontal"
|
|
HorizontalExpand="True"
|
|
SeparationOverride="0"
|
|
Name="InternalHBox">
|
|
<profile:ProfilePreviewSpriteView Scale="2 2"
|
|
Margin="0 4 4 4"
|
|
OverrideDirection="South"
|
|
Name="View"
|
|
SetSize="64 64"/>
|
|
<Label Name="DescriptionLabel"
|
|
ClipText="True"
|
|
HorizontalExpand="True"/>
|
|
<Button Name="DeleteButton"
|
|
Text="{Loc 'character-setup-gui-character-picker-button-delete-button'}"/>
|
|
<Button Name="ConfirmDeleteButton"
|
|
Text="{Loc 'character-setup-gui-character-picker-button-confirm-delete-button'}"
|
|
Visible="False"
|
|
StyleClasses="negative"/>
|
|
|
|
</BoxContainer>
|
|
</ContainerButton>
|