The layout of the Dirty Hacks page has been slightly corrected

This commit is contained in:
Vova 2025-04-20 22:02:09 +10:00
parent a3491a13d8
commit ec5df4e09d

View file

@ -33,7 +33,7 @@
<StackPanel <StackPanel
Margin="10" Margin="10"
Orientation="Vertical" Orientation="Vertical"
Spacing="5"> Spacing="10">
<TextBlock <TextBlock
HorizontalAlignment="Center" HorizontalAlignment="Center"
Classes="h1" Classes="h1"
@ -44,27 +44,29 @@
TextDecorations="Underline" TextDecorations="Underline"
Text="Highly specific hacks &amp; tricks to alleviate performance issues, crashing, or freezing. Can cause issues." /> Text="Highly specific hacks &amp; tricks to alleviate performance issues, crashing, or freezing. Can cause issues." />
<Separator/> <Separator/>
<CheckBox IsChecked="{Binding DirtyHacks.Xc2MenuSoftlockFix}" <StackPanel Margin="10,0,0,0">
ToolTip.Tip="{Binding DirtyHacks.Xc2MenuFixTooltip}"> <CheckBox IsChecked="{Binding DirtyHacks.Xc2MenuSoftlockFix}"
<StackPanel Orientation="Horizontal"> ToolTip.Tip="{Binding DirtyHacks.Xc2MenuFixTooltip}">
<TextBlock Text="Xenoblade Chronicles 2 Menu Softlock Fix" /> <StackPanel Orientation="Horizontal">
<TextBlock Classes="DefaultDisable" Text="Default: disable" /> <TextBlock Text="Xenoblade Chronicles 2 Menu Softlock Fix" />
</StackPanel> <TextBlock Classes="DefaultDisable" Text="Default: disable" />
</CheckBox> </StackPanel>
<CheckBox IsChecked="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAccepted}" </CheckBox>
ToolTip.Tip="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAcceptedTooltip}"> <CheckBox IsChecked="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAccepted}"
<StackPanel Orientation="Horizontal"> ToolTip.Tip="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAcceptedTooltip}">
<TextBlock Text="Disable IsAnyInternetRequestAccepted" /> <StackPanel Orientation="Horizontal">
<TextBlock Classes="DefaultDisable" Text="Default: disable" /> <TextBlock Text="Disable IsAnyInternetRequestAccepted" />
</StackPanel> <TextBlock Classes="DefaultDisable" Text="Default: disable" />
</CheckBox> </StackPanel>
<CheckBox IsChecked="{Binding DisableFixOcclusionCulling}" </CheckBox>
ToolTip.Tip="{ext:Locale DisableFixOcclusionCullingTooltip}"> <CheckBox IsChecked="{Binding DisableFixOcclusionCulling}"
<StackPanel Orientation="Horizontal"> ToolTip.Tip="{ext:Locale DisableFixOcclusionCullingTooltip}">
<TextBlock Text="{ext:Locale DisableFixOcclusionCulling}" /> <StackPanel Orientation="Horizontal">
<TextBlock Classes="DefaultDisable" Text="Default: disable" /> <TextBlock Text="{ext:Locale DisableFixOcclusionCulling}" />
</StackPanel> <TextBlock Classes="DefaultDisable" Text="Default: disable" />
</CheckBox> </StackPanel>
</CheckBox>
</StackPanel>
</StackPanel> </StackPanel>
</Border> </Border>
</ScrollViewer> </ScrollViewer>