From 04c67ea661886c61adb7b0ead35c32b9a44a5db3 Mon Sep 17 00:00:00 2001 From: axell Date: Sat, 6 Jul 2024 18:51:40 +0200 Subject: [PATCH] dont invert that (again) --- 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 c6ab881..24bc9a5 100644 --- a/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Menu/IntegrationsViewModel.cs @@ -112,7 +112,7 @@ namespace Bloxstrap.UI.ViewModels.Menu public bool DiscordAccountOnProfile { - get => !App.Settings.Prop.AccountShownOnProfile; + get => App.Settings.Prop.AccountShownOnProfile; set => App.Settings.Prop.AccountShownOnProfile = value; }