From 7cda0fb5b1e41af8550daa0bdbda0ba8628ae486 Mon Sep 17 00:00:00 2001 From: axell Date: Sat, 6 Jul 2024 18:11:27 +0200 Subject: [PATCH] fix accidentally swapping 2 variables --- Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs b/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs index 0078954..3d4ef30 100644 --- a/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs @@ -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