Update submodule, removal of window AddToScreen.

This commit is contained in:
Pieter-Jan Briers
2019-07-18 22:49:49 +02:00
parent a9a99c1821
commit ce1eab9181
16 changed files with 6 additions and 29 deletions

View File

@@ -43,8 +43,6 @@ namespace Content.Client.GameObjects.Components.Actor
var uiComponents = Owner.GetAllComponents<ICharacterUI>();
Window = new CharacterWindow(uiComponents);
Window.OnClose += () => _gameHud.CharacterButtonDown = false;
Window.AddToScreen();
}
/// <summary>
@@ -98,7 +96,6 @@ namespace Content.Client.GameObjects.Components.Actor
public CharacterWindow(IEnumerable<ICharacterUI> windowComponents)
{
Title = "Character";
HideOnClose = true;
Visible = false;
_contentsVBox = new VBoxContainer();