mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
# Description I changed something so long ago but didn't make sure others were changed to follow. --- <details><summary><h1>Media</h1></summary> <p>      </p> </details> --- # Changelog 🆑 - fix: Fixed many buttons being yellow instead of red --------- Signed-off-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Co-authored-by: Timfa <timfalken@hotmail.com> (cherry picked from commit ca703ab8d367bbdfc4ab115af4a01964ff597e5f)
19 lines
1.1 KiB
XML
19 lines
1.1 KiB
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" Title="{Loc 'autodoc-view-program-title'}" SetSize="600 500">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<BoxContainer Orientation="Vertical" Margin="5 5 5 5">
|
|
<Label Name="ProgramTitle"/>
|
|
<!-- Set to Program.Title -->
|
|
<Button Name="SafetyButton" Text="{Loc 'autodoc-safety-enabled'}"/>
|
|
<Button Name="RemoveButton" StyleClasses="Danger" Text="{Loc 'autodoc-remove-program'}"/>
|
|
<Button Name="AddStepButton" Text="{Loc 'autodoc-add-step'}"/>
|
|
<Button Name="RemoveStepButton" StyleClasses="Danger" Text="{Loc 'autodoc-remove-step'}" Disabled="True"/>
|
|
<Button Name="StartButton" StyleClasses="Danger" Text="{Loc 'autodoc-start-program'}"/>
|
|
</BoxContainer>
|
|
<ScrollContainer HorizontalExpand="True" VerticalExpand="True">
|
|
<ItemList Name="Steps"/>
|
|
<!-- Set to Program.Steps -->
|
|
</ScrollContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|