mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-09 19:22:00 +00:00
UI: clean up slider UI for shader translation delay
This commit is contained in:
parent
6286501550
commit
3525d5ecd4
2 changed files with 23 additions and 17 deletions
|
@ -40,7 +40,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ShaderTranslationDelayTooltipText => $"Current value: {ShaderTranslationDelay}";
|
public string ShaderTranslationDelayValueText => $"{ShaderTranslationDelay}ms";
|
||||||
|
|
||||||
public int ShaderTranslationDelay
|
public int ShaderTranslationDelay
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
||||||
{
|
{
|
||||||
_shaderTranslationSleepDelay = value;
|
_shaderTranslationSleepDelay = value;
|
||||||
|
|
||||||
OnPropertiesChanged(nameof(ShaderTranslationDelay), nameof(ShaderTranslationDelayTooltipText));
|
OnPropertiesChanged(nameof(ShaderTranslationDelay), nameof(ShaderTranslationDelayValueText));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,10 +54,13 @@
|
||||||
<TextBlock VerticalAlignment="Center"
|
<TextBlock VerticalAlignment="Center"
|
||||||
Text="Arbitrary Delay on Shader Translation"/>
|
Text="Arbitrary Delay on Shader Translation"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<Slider IsVisible="{Binding DirtyHacks.ShaderTranslationDelayEnabled}"
|
<StackPanel
|
||||||
HorizontalAlignment="Center"
|
IsVisible="{Binding DirtyHacks.ShaderTranslationDelayEnabled}"
|
||||||
|
Margin="0,10,0,0"
|
||||||
|
Orientation="Horizontal"
|
||||||
|
HorizontalAlignment="Center">
|
||||||
|
<Slider HorizontalAlignment="Center"
|
||||||
Value="{Binding DirtyHacks.ShaderTranslationDelay}"
|
Value="{Binding DirtyHacks.ShaderTranslationDelay}"
|
||||||
ToolTip.Tip="{Binding DirtyHacks.ShaderTranslationDelayTooltipText}"
|
|
||||||
Width="175"
|
Width="175"
|
||||||
Margin="0,-3,0,0"
|
Margin="0,-3,0,0"
|
||||||
Height="32"
|
Height="32"
|
||||||
|
@ -69,6 +72,9 @@
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Minimum="1"
|
Minimum="1"
|
||||||
Maximum="1000" />
|
Maximum="1000" />
|
||||||
|
<TextBlock Margin="5,0"
|
||||||
|
Text="{Binding DirtyHacks.ShaderTranslationDelayValueText}"/>
|
||||||
|
</StackPanel>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
Loading…
Reference in a new issue