* Renames KickWindow, adds a Respawn command button. * Additionally fix PlayerActionsWindow not correctly having the buttons disabled on open.
19 lines
1018 B
XML
19 lines
1018 B
XML
<SS14Window
|
|
xmlns="https://spacestation14.io"
|
|
xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
Title="{Loc admin-player-actions-window-title}" MinSize="425 272">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Label Text="{Loc Reason}" MinWidth="100" />
|
|
<Control MinWidth="50" />
|
|
<LineEdit Name="ReasonLine" MinWidth="100" HorizontalExpand="True" />
|
|
</BoxContainer>
|
|
<cc:PlayerListControl Name="PlayerList" VerticalExpand="True" />
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Button Name="SubmitKickButton" Text="{Loc admin-player-actions-window-kick-text}" Disabled="True"/>
|
|
<Button Name="SubmitAHelpButton" Text="{Loc admin-player-actions-window-ahelp-text}" Disabled="True"/>
|
|
<Button Name="SubmitRespawnButton" Text="{Loc admin-player-actions-window-respawn-text}" Disabled="True"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</SS14Window>
|