colon in the options lol

This commit is contained in:
Ellpeck 2020-07-08 23:34:52 +02:00
parent f092be94a8
commit ed322796a4

View file

@ -383,7 +383,7 @@ namespace TouchyTickets {
},
PositionOffset = new Vector2(0, 1)
});
optionList.AddChild(new Paragraph(Anchor.AutoLeft, 1, Localization.Get("MinTicketsForAutoBuy")));
optionList.AddChild(new Paragraph(Anchor.AutoLeft, 1, Localization.Get("MinTicketsForAutoBuy") + ":"));
var num = optionList.AddChild(ElementHelper.NumberField(Anchor.AutoLeft, new Vector2(1, 20), Options.Instance.MinTicketsForAutoBuy, 1000, null, (t, value) => {
if (int.TryParse(value, out Options.Instance.MinTicketsForAutoBuy))
Options.Save();