Skip to content

Commit

Permalink
Fixed glitch when not using mixed-heritage
Browse files Browse the repository at this point in the history
  • Loading branch information
qkmaxware committed May 28, 2021
1 parent 9e83039 commit e890d7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TrekSharp.AdventureTools/Shared/LifepathWizard.razor
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@

private bool useMixed;
private ListSelect<Species> speciesSecondarySelector;
private List<Species> characterSubspecies => speciesSecondarySelector.AllSelected;
private List<Species> characterSubspecies => speciesSecondarySelector?.AllSelected;
private void toggleMixedHeritage() {
useMixed = !useMixed;
if (!useMixed) {
Expand Down

0 comments on commit e890d7c

Please sign in to comment.