Fix EntityButton not inheriting correct type.

This commit is contained in:
Pieter-Jan Briers
2019-03-17 14:37:18 +01:00
parent 694d6e5b33
commit 6c66817502

View File

@@ -225,7 +225,7 @@ namespace Content.Client.GameObjects.Components.Storage
/// <summary>
/// Button created for each entity that represents that item in the storage UI, with a texture, and name and size label
/// </summary>
private class EntityButton : Control
private class EntityButton : PanelContainer
{
public EntityUid EntityuID { get; set; }
public Button ActualButton { get; private set; }