Skip to content

Commit

Permalink
Fix WPF binding failure
Browse files Browse the repository at this point in the history
  • Loading branch information
lahm86 committed Jun 13, 2024
1 parent 19af8ec commit eeca538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TRRandomizerView/Model/BoolItemControlClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public bool IsActive

public string Title { get; set; }
public string Description { get; set; }
public string HelpURL { get; set; }
public bool HasHelpURL => HelpURL != null;
public string HelpURL { get; set; } = string.Empty;
public bool HasHelpURL => HelpURL?.Length > 0;

public event PropertyChangedEventHandler PropertyChanged;

Expand Down

0 comments on commit eeca538

Please sign in to comment.