Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Fixes a DreamMaker right checkbox
Browse files Browse the repository at this point in the history
- Fixes #64
  • Loading branch information
Cyberboss committed Dec 15, 2020
1 parent 2f158bf commit 96a81a1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public bool CompReq
get => newDreamMakerRights.HasFlag(DreamMakerRights.SetApiValidationRequirement);
set
{
var right = DreamMakerRights.SetSecurityLevel;
var right = DreamMakerRights.SetApiValidationRequirement;
if (value)
newDreamMakerRights |= right;
else
Expand Down Expand Up @@ -869,6 +869,7 @@ void PostLoad()
this.RaisePropertyChanged(nameof(CompVali));
this.RaisePropertyChanged(nameof(CompList));
this.RaisePropertyChanged(nameof(CompSec));
this.RaisePropertyChanged(nameof(CompReq));

this.RaisePropertyChanged(nameof(DDRead));
this.RaisePropertyChanged(nameof(DDPort));
Expand Down

0 comments on commit 96a81a1

Please sign in to comment.