diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index d4bbe89c51..265130d15d 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -217,12 +217,12 @@ public sealed partial class LatheMenu : DefaultWindow queuedRecipeBox.Orientation = BoxContainer.LayoutOrientation.Horizontal; var queuedRecipeProto = new EntityPrototypeView(); + queuedRecipeBox.AddChild(queuedRecipeProto); if (_prototypeManager.TryIndex(recipe.Result, out EntityPrototype? entityProto) && entityProto != null) queuedRecipeProto.SetPrototype(entityProto); var queuedRecipeLabel = new Label(); queuedRecipeLabel.Text = $"{idx}. {recipe.Name}"; - queuedRecipeBox.AddChild(queuedRecipeProto); queuedRecipeBox.AddChild(queuedRecipeLabel); QueueList.AddChild(queuedRecipeBox); idx++;