Don't use verbatim string literals

This commit is contained in:
Jai Sharma
2022-11-29 18:22:07 +00:00
parent 218c04c174
commit 7dbf379351
3 changed files with 8 additions and 8 deletions

View File

@ -73,8 +73,8 @@ namespace osu.Game.Screens.Edit.Timing
{
var columns = new List<TableColumn>
{
new TableColumn(@"Time", Anchor.CentreLeft, new Dimension(GridSizeMode.Absolute, TIMING_COLUMN_WIDTH)),
new TableColumn(@"Attributes", Anchor.CentreLeft),
new TableColumn("Time", Anchor.CentreLeft, new Dimension(GridSizeMode.Absolute, TIMING_COLUMN_WIDTH)),
new TableColumn("Attributes", Anchor.CentreLeft),
};
return columns.ToArray();