From 7b892e5a9073cf7634bd0cfeea99b3a50810d49e Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 10 Jun 2020 23:09:06 +0200 Subject: [PATCH] bit more space for the ticket rate --- TouchyTickets/Ui.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TouchyTickets/Ui.cs b/TouchyTickets/Ui.cs index 6fbbd50..3e4d523 100644 --- a/TouchyTickets/Ui.cs +++ b/TouchyTickets/Ui.cs @@ -70,7 +70,7 @@ namespace TouchyTickets { } } }); - var ticketGroup = main.AddChild(new Group(Anchor.AutoCenter, new Vector2(1, 0.15F), false)); + var ticketGroup = main.AddChild(new Group(Anchor.AutoCenter, new Vector2(1, 0.175F), false)); ticketGroup.AddChild(new Paragraph(Anchor.AutoCenter, 10000, p => PrettyPrintNumber(GameImpl.Instance.Tickets) + "", true) { TextScale = 0.3F }); @@ -79,7 +79,7 @@ namespace TouchyTickets { }); BigInteger lastTickets = 0; ActiveCoroutine storeWobble = null; - var storeGroup = main.AddChild(new CustomDrawGroup(Anchor.AutoCenter, new Vector2(1, 0.45F), null, null, false) { + var storeGroup = main.AddChild(new CustomDrawGroup(Anchor.AutoCenter, new Vector2(1, 0.425F), null, null, false) { OnUpdated = (e, time) => { if (lastTickets != GameImpl.Instance.Tickets) { lastTickets = GameImpl.Instance.Tickets;