From 44c9feaebfc7444adeee74ee3119603e71588784 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 20 Oct 2019 22:39:22 +0200 Subject: [PATCH] Fix Leave button in lobby being off to the right. --- Content.Client/UserInterface/LobbyGui.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/LobbyGui.cs b/Content.Client/UserInterface/LobbyGui.cs index a03dead3da..458e7a291b 100644 --- a/Content.Client/UserInterface/LobbyGui.cs +++ b/Content.Client/UserInterface/LobbyGui.cs @@ -70,7 +70,8 @@ namespace Content.Client.UserInterface { SizeFlagsHorizontal = SizeFlags.ShrinkEnd, Text = localization.GetString("Leave"), - StyleClasses = {NanoStyle.StyleClassButtonBig} + StyleClasses = {NanoStyle.StyleClassButtonBig}, + GrowHorizontal = GrowDirection.Begin }); LeaveButton.SetAnchorAndMarginPreset(LayoutPreset.TopRight);