From 6c668175029a2d0f7abfcef00bc28891224cc92c Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 17 Mar 2019 14:37:18 +0100 Subject: [PATCH] Fix EntityButton not inheriting correct type. --- .../GameObjects/Components/Storage/ClientStorageComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/GameObjects/Components/Storage/ClientStorageComponent.cs b/Content.Client/GameObjects/Components/Storage/ClientStorageComponent.cs index 3019553615..5ca8539377 100644 --- a/Content.Client/GameObjects/Components/Storage/ClientStorageComponent.cs +++ b/Content.Client/GameObjects/Components/Storage/ClientStorageComponent.cs @@ -225,7 +225,7 @@ namespace Content.Client.GameObjects.Components.Storage /// /// Button created for each entity that represents that item in the storage UI, with a texture, and name and size label /// - private class EntityButton : Control + private class EntityButton : PanelContainer { public EntityUid EntityuID { get; set; } public Button ActualButton { get; private set; }