From 962a7736d694627e753e963894035a190e1fd353 Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Sat, 13 May 2023 16:30:39 +0100 Subject: [PATCH] Fix missing dependencies, which caused exception setting up UI (#16387) --- Content.Client/Lobby/UI/LobbyGui.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml.cs b/Content.Client/Lobby/UI/LobbyGui.xaml.cs index 62cbac420b..d45a99c16f 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml.cs +++ b/Content.Client/Lobby/UI/LobbyGui.xaml.cs @@ -29,6 +29,7 @@ namespace Content.Client.Lobby.UI public LobbyGui() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); SetAnchorPreset(MainContainer, LayoutPreset.Wide); SetAnchorPreset(Background, LayoutPreset.Wide); -- 2.51.2