mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* - add: bark * - tweak: Bark now in client side * - add: bark config in options * - add: migration prepare * - add: Migrations * - add: more barks * - add: bark preference in character profile * - add: knob * - add: change value by mouse wheel * - tweak: optimise WWDP thinks * - tweak: improve NeoTabContainer optimisation * - add: limit of barks * - fix: кролькины фиксы * - fix: change things in tab id * Update Content.Client/_White/TTS/TTSSystem.cs Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * - fix: спатисон дурак блин ты сломал что то.. * - fix: спатисонов фиксы * Update Content.Server/_White/Bark/BarkSystem.cs * - fix: буковки * Apply suggestions from code review --------- Co-authored-by: Spatison <137375981+Spatison@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<BoxContainer
|
|
xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
xmlns:style="clr-namespace:Content.Client.Stylesheets"
|
|
MouseFilter="Pass"
|
|
HorizontalExpand="True"
|
|
VerticalExpand="True">
|
|
<BoxContainer Name="Container" HorizontalExpand="True" VerticalExpand="True">
|
|
<ScrollContainer Name="TabScrollContainer" MinSize="42 42" ReserveScrollbarSpace="True" ReturnMeasure="True">
|
|
<BoxContainer Name="TabContainer" />
|
|
</ScrollContainer>
|
|
|
|
<PanelContainer Name="Separator" MinSize="2 2">
|
|
<PanelContainer.PanelOverride>
|
|
<graphics:StyleBoxFlat BackgroundColor="{x:Static style:StyleNano.NanoGold}" />
|
|
</PanelContainer.PanelOverride>
|
|
</PanelContainer>
|
|
|
|
<ScrollContainer
|
|
Name="ContentScrollContainer"
|
|
HorizontalExpand="True"
|
|
HScrollEnabled="True"
|
|
VerticalExpand="True"
|
|
VScrollEnabled="True"
|
|
ReturnMeasure="True">
|
|
|
|
</ScrollContainer>
|
|
</BoxContainer>
|
|
</BoxContainer>
|