diff --git a/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs index aa8333d68..81aae6b74 100644 --- a/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs @@ -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 } } diff --git a/src/Ryujinx/UI/Views/Input/InputView.axaml b/src/Ryujinx/UI/Views/Input/InputView.axaml index dea508f10..c4f61e78e 100644 --- a/src/Ryujinx/UI/Views/Input/InputView.axaml +++ b/src/Ryujinx/UI/Views/Input/InputView.axaml @@ -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}" />