Skip to content

Commit 45773fd

Browse files
committed
Make CustomCellInfo values settable again
1 parent f0903a5 commit 45773fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

BeatSaberMarkupLanguage/Components/CustomListTableData.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,11 @@ public CustomCellInfo(string text, string subtext = null, Sprite icon = null)
215215
this.Icon = icon;
216216
}
217217

218-
public string Text { get; }
218+
public string Text { get; set; }
219219

220-
public string Subtext { get; }
220+
public string Subtext { get; set; }
221221

222-
public Sprite Icon { get; }
222+
public Sprite Icon { get; set; }
223223
}
224224
}
225225
}

0 commit comments

Comments
 (0)