* Allow for Station Records interface for aghosts to delete records * Fix record consoles not working when there are more than 2 crew members. HOW DID NOONE NOTICE THIS SOONER??? * Stop being unconventional
27 lines
1.5 KiB
XML
27 lines
1.5 KiB
XML
<DefaultWindow xmlns="https://spacestation14.io"
|
|
Title="{Loc 'general-station-record-console-window-title'}"
|
|
MinSize="750 500">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Margin="5 5 5 10" HorizontalExpand="true" VerticalAlignment="Center">
|
|
<OptionButton Name="StationRecordsFilterType" MinWidth="200" Margin="0 0 10 0"/>
|
|
<LineEdit Name="StationRecordsFiltersValue"
|
|
PlaceHolder="{Loc 'general-station-record-for-filter-line-placeholder'}" HorizontalExpand="True"/>
|
|
<Button Name="StationRecordsFilters" Text="{Loc 'general-station-record-console-search-records'}"/>
|
|
<Button Name="StationRecordsFiltersReset" Text="{Loc 'general-station-record-console-reset-filters'}"/>
|
|
</BoxContainer>
|
|
<BoxContainer VerticalExpand="True">
|
|
<!-- Record listing -->
|
|
<BoxContainer Orientation="Vertical" Margin="5" MinWidth="250" MaxWidth="250">
|
|
<Label Name="RecordListingStatus" Visible="False" />
|
|
<ScrollContainer VerticalExpand="True">
|
|
<ItemList Name="RecordListing" />
|
|
</ScrollContainer>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical" Margin="5">
|
|
<Label Name="RecordContainerStatus" Visible="False" Text="{Loc 'general-station-record-console-select-record-info'}"/>
|
|
<Control Name="RecordContainer" Visible="False"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</DefaultWindow>
|