1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-19 21:44:14 +01:00

Remove ReflectionBinding in Mod Manager (#6280)

This commit is contained in:
Isaac Marovitz 2024-02-10 23:52:11 +00:00 committed by GitHub
parent 4ae9921063
commit 356a75af0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,14 +40,14 @@
Name="EnableAllButton"
MinWidth="90"
Margin="5"
Command="{ReflectionBinding EnableAll}">
Command="{Binding EnableAll}">
<TextBlock Text="{locale:Locale DlcManagerEnableAllButton}" />
</Button>
<Button
Name="DisableAllButton"
MinWidth="90"
Margin="5"
Command="{ReflectionBinding DisableAll}">
Command="{Binding DisableAll}">
<TextBlock Text="{locale:Locale DlcManagerDisableAllButton}" />
</Button>
</StackPanel>