Skip to content

Commit

Permalink
Make CustomCellInfo values settable again
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoco007 committed Sep 20, 2024
1 parent f0903a5 commit 45773fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BeatSaberMarkupLanguage/Components/CustomListTableData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,11 @@ public CustomCellInfo(string text, string subtext = null, Sprite icon = null)
this.Icon = icon;
}

public string Text { get; }
public string Text { get; set; }

public string Subtext { get; }
public string Subtext { get; set; }

public Sprite Icon { get; }
public Sprite Icon { get; set; }
}
}
}

0 comments on commit 45773fd

Please sign in to comment.