From f07f1c1d3f1b7002a57dc6c50fa335ea25d04741 Mon Sep 17 00:00:00 2001 From: axell Date: Sat, 6 Jul 2024 18:44:17 +0200 Subject: [PATCH] dont invert that value --- Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs b/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs index 3d4ef30..c6ab881 100644 --- a/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs @@ -113,7 +113,7 @@ namespace Bloxstrap.UI.ViewModels.Menu public bool DiscordAccountOnProfile { get => !App.Settings.Prop.AccountShownOnProfile; - set => App.Settings.Prop.AccountShownOnProfile = !value; + set => App.Settings.Prop.AccountShownOnProfile = value; } public bool DisableAppPatchEnabled