fix accidentally swapping 2 variables

This commit is contained in:
axell 2024-07-06 18:11:27 +02:00 committed by GitHub
parent 7b019d0b17
commit 7cda0fb5b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,14 +106,14 @@ namespace Bloxstrap.UI.ViewModels.Menu
public bool DiscordActivityJoinEnabled
{
get => !App.Settings.Prop.AccountShownOnProfile;
set => App.Settings.Prop.AccountShownOnProfile = !value;
get => !App.Settings.Prop.HideRPCButtons;
set => App.Settings.Prop.HideRPCButtons = !value;
}
public bool DiscordAccountOnProfile
{
get => !App.Settings.Prop.HideRPCButtons;
set => App.Settings.Prop.HideRPCButtons = !value;
get => !App.Settings.Prop.AccountShownOnProfile;
set => App.Settings.Prop.AccountShownOnProfile = !value;
}
public bool DisableAppPatchEnabled