Files
tbd-station-14/Content.Client/Forensics/ForensicScannerMenu.xaml
Pieter-Jan Briers 68ce53ae17 Random spontaneous cleanup PR (#25131)
* Use new Subs.CVar helper

Removes manual config OnValueChanged calls, removes need to remember to manually unsubscribe.

This both reduces boilerplate and fixes many issues where subscriptions weren't removed on entity system shutdown.

* Fix a bunch of warnings

* More warning fixes

* Use new DateTime serializer to get rid of ISerializationHooks in changelog code.

* Get rid of some more ISerializationHooks for enums

* And a little more

* Apply suggestions from code review

Co-authored-by: 0x6273 <0x40@keemail.me>

---------

Co-authored-by: 0x6273 <0x40@keemail.me>
2024-02-13 16:48:39 -05:00

28 lines
982 B
XML

<DefaultWindow xmlns="https://spacestation14.io"
Title="{Loc 'forensic-scanner-interface-title'}"
MinSize="350 200"
SetSize="350 500">
<BoxContainer Orientation="Vertical">
<BoxContainer Orientation="Horizontal">
<Button Name="Print"
TextAlign="Center"
HorizontalExpand="True"
Access="Public"
Disabled="True"
Text="{Loc 'forensic-scanner-interface-print'}" />
<Button Name="Clear"
TextAlign="Center"
HorizontalExpand="True"
Access="Public"
Disabled="True"
Text="{Loc 'forensic-scanner-interface-clear'}" />
</BoxContainer>
<Label
Name="NameLabel"
Align="Center" />
<Label
Name="Diagnostics"
Text="{Loc forensic-scanner-interface-no-data}"/>
</BoxContainer>
</DefaultWindow>