Fixes Breaking Change with UI windows. (#192)

* Custom UI window constructors were changed.

* Update Submodule.
This commit is contained in:
Acruid
2019-04-12 21:37:09 -07:00
committed by GitHub
parent 6f032f678a
commit 9d7345892f
8 changed files with 36 additions and 13 deletions

View File

@@ -1,10 +1,11 @@
using Content.Shared.GameObjects;
using Content.Shared.GameObjects.Components.Power;
using Content.Shared.GameObjects.Components.Power;
using SS14.Client.Interfaces.Graphics;
using SS14.Client.UserInterface.Controls;
using SS14.Client.UserInterface.CustomControls;
using SS14.Shared.GameObjects;
using SS14.Shared.Interfaces.GameObjects;
using SS14.Shared.Interfaces.Network;
using SS14.Shared.IoC;
namespace Content.Client.GameObjects.Components.Power
{
@@ -22,7 +23,7 @@ namespace Content.Client.GameObjects.Components.Power
{
LastWindow.Dispose();
}
LastWindow = new SS14Window
LastWindow = new SS14Window(IoCManager.Resolve<IDisplayManager>())
{
Title = "Power Debug Tool",
};