mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-27 19:56:23 +02:00
misc: [ci skip] Missed the property part of _chosenProfile
This commit is contained in:
parent
ce31a47934
commit
9d83dfd19c
2 changed files with 4 additions and 4 deletions
|
@ -101,7 +101,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
|||
|
||||
public event Action NotifyChangesEvent;
|
||||
|
||||
public string ProfileChoose
|
||||
public string ChosenProfile
|
||||
{
|
||||
get => _chosenProfile;
|
||||
set
|
||||
|
@ -903,7 +903,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
|||
|
||||
LoadProfiles();
|
||||
|
||||
ProfileChoose = ProfileName; // Show new profile
|
||||
ChosenProfile = ProfileName; // Show new profile
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -937,7 +937,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
|||
|
||||
LoadProfiles();
|
||||
|
||||
ProfileChoose = ProfilesList[0].ToString(); // Show default profile
|
||||
ChosenProfile = ProfilesList[0].ToString(); // Show default profile
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
Name="ProfileBox"
|
||||
HorizontalAlignment="Stretch"
|
||||
VerticalAlignment="Center"
|
||||
SelectedItem="{Binding ProfileChoose, Mode=TwoWay}"
|
||||
SelectedItem="{Binding ChosenProfile, Mode=TwoWay}"
|
||||
SelectionChanged="ComboBox_SelectionChanged"
|
||||
ItemsSource="{Binding ProfilesList}"
|
||||
Text="{Binding ProfileName, Mode=TwoWay}" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue