mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
fix accidentally swapping 2 variables
This commit is contained in:
parent
7b019d0b17
commit
7cda0fb5b1
@ -106,14 +106,14 @@ namespace Bloxstrap.UI.ViewModels.Menu
|
|||||||
|
|
||||||
public bool DiscordActivityJoinEnabled
|
public bool DiscordActivityJoinEnabled
|
||||||
{
|
{
|
||||||
get => !App.Settings.Prop.AccountShownOnProfile;
|
get => !App.Settings.Prop.HideRPCButtons;
|
||||||
set => App.Settings.Prop.AccountShownOnProfile = !value;
|
set => App.Settings.Prop.HideRPCButtons = !value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool DiscordAccountOnProfile
|
public bool DiscordAccountOnProfile
|
||||||
{
|
{
|
||||||
get => !App.Settings.Prop.HideRPCButtons;
|
get => !App.Settings.Prop.AccountShownOnProfile;
|
||||||
set => App.Settings.Prop.HideRPCButtons = !value;
|
set => App.Settings.Prop.AccountShownOnProfile = !value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool DisableAppPatchEnabled
|
public bool DisableAppPatchEnabled
|
||||||
|
Loading…
Reference in New Issue
Block a user