Skip to content

Commit

Permalink
Fix Markings Menu (DeltaV-Station#997)
Browse files Browse the repository at this point in the history
# Description

This PR adds a vertical scroll bar to the Markings tab, which fixes an
issue where markings with > 2 color selections could not be used.

<details><summary><h1>Media</h1></summary>
<p>


![image](https://github.com/user-attachments/assets/fe4ea61a-ced2-4d6d-bc8c-92e752a77d98)

</p>
</details>

# Changelog

:cl:
- fix: Fixed the Markings menu by adding a scroll container to it.
Markings with greater than 2 color selections can now be used.
  • Loading branch information
VMSolidus authored Oct 1, 2024
1 parent 5e88207 commit b9167c9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Content.Client/Preferences/UI/HumanoidProfileEditor.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,10 @@
<ui:NeoTabContainer Name="CLoadoutsTabs" VerticalExpand="True" SeparatorMargin="0" />
</BoxContainer>
<BoxContainer Name="CMarkingsTab" HorizontalExpand="True" Orientation="Vertical" Margin="10">
<!-- Markings -->
<humanoid:MarkingPicker Name="CMarkings" IgnoreCategories="Hair,FacialHair" />
<ScrollContainer HorizontalExpand="True" HScrollEnabled="True" VerticalExpand="True" VScrollEnabled="True">
<!-- Markings -->
<humanoid:MarkingPicker Name="CMarkings" IgnoreCategories="Hair,FacialHair" />
</ScrollContainer>
</BoxContainer>
</ui:NeoTabContainer>
</BoxContainer>
Expand Down

0 comments on commit b9167c9

Please sign in to comment.