forked from SpaceStation14-Shenanigans/Monolith
e61b8d860f
* ops * more * chore: automatically update REUSE headers * unmodify upstream * ok Co-authored-by: LaCumbiaDelCoronavirus <90893484+LaCumbiaDelCoronavirus@users.noreply.github.com> * chore: automatically update REUSE headers --------- Co-authored-by: monolith8319 <195513600+monolith8319@users.noreply.github.com> Co-authored-by: LaCumbiaDelCoronavirus <90893484+LaCumbiaDelCoronavirus@users.noreply.github.com>
22 lines
1.1 KiB
XML
22 lines
1.1 KiB
XML
<DefaultWindow xmlns="https://spacestation14.io"
|
|
Title="{Loc signal-timer-menu-title}">
|
|
<BoxContainer Orientation="Vertical" SeparationOverride="4" MinWidth="150">
|
|
<BoxContainer Name="TextEdit" Orientation="Horizontal">
|
|
<Label Name="CurrentLabel" Text="{Loc signal-timer-menu-label}" />
|
|
<LineEdit Name="CurrentTextEdit" MinWidth="80" />
|
|
</BoxContainer>
|
|
<BoxContainer Name="DelayEdit" Orientation="Horizontal">
|
|
<Label Name="CurrentDelay" Text="{Loc signal-timer-menu-delay}" />
|
|
<!-- Mono: Changed from integer MM:SS to float seconds -->
|
|
<FloatSpinBox Name="CurrentDelayEdit" MinWidth="32" />
|
|
<Label Text="s" />
|
|
</BoxContainer>
|
|
<!-- Frontier: Repeat Checkbox -->
|
|
<BoxContainer Name="RepeatEdit" Orientation="Horizontal">
|
|
<CheckBox Name="CurrentRepeatEdit" Access="Public" Text="{Loc 'signal-timer-menu-repeat'}" />
|
|
</BoxContainer>
|
|
<!-- End Frontier -->
|
|
<Button Name="StartTimer" Text="{Loc signal-timer-menu-start}" />
|
|
</BoxContainer>
|
|
</DefaultWindow>
|