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

@ -130,8 +130,8 @@ namespace osu.Game.Screens.Edit.Timing
deleteButton.Enabled.Value = selected.NewValue != null;
addButton.Text = selected.NewValue != null
? @"+ Clone to current time"
: @"+ Add at current time";
? "+ Clone to current time"
: "+ Add at current time";
}, true);
controlPointGroups.BindTo(Beatmap.ControlPointInfo.Groups);