mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:54:51 +01:00
* apply negate accents system * add toggle to voice mask ui * roll negateaccents into voice mask system, delete negate accents comp&system, update yml entries * convert button to ToggleButton and some cleanup * retry for heisenfail * accent toggle * update names and add mask active check for accent hiding
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 'voice-mask-name-change-window'}"
|
|
MinSize="5 30">
|
|
<BoxContainer Orientation="Vertical" Margin="5">
|
|
<Label Text="{Loc 'voice-mask-name-change-info'}" />
|
|
<BoxContainer Orientation="Horizontal" Margin="5">
|
|
<LineEdit Name="NameSelector" HorizontalExpand="True" />
|
|
<Button Name="NameSelectorSet" Text="{Loc 'voice-mask-name-change-set'}" />
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Horizontal" Margin="5">
|
|
<Label Text="{Loc 'voice-mask-name-change-speech-style'}" />
|
|
<OptionButton Name="SpeechVerbSelector" /> <!-- Populated in LoadVerbs -->
|
|
</BoxContainer>
|
|
<Button Name="ToggleAccentButton" Text="{Loc 'voice-mask-name-change-accent-toggle'}" HorizontalExpand="True" ToggleMode="True" Margin="5"/>
|
|
<Button Name="ToggleButton" Text="{Loc 'voice-mask-name-change-toggle'}" HorizontalExpand="True" ToggleMode="True" Margin="5"/>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|