From d3053c3c8c93b65149e87d67562ac467641e5977 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Sat, 27 Jul 2019 00:32:59 -0700 Subject: [PATCH] Fixed HandsGui children so that HandsGui is clickable --- Content.Client/UserInterface/HandsGui.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Client/UserInterface/HandsGui.cs b/Content.Client/UserInterface/HandsGui.cs index 7d54b88c55..7a3dfbbf56 100644 --- a/Content.Client/UserInterface/HandsGui.cs +++ b/Content.Client/UserInterface/HandsGui.cs @@ -60,6 +60,7 @@ namespace Content.Client.UserInterface AddChild(new TextureRect { + MouseFilter = MouseFilterMode.Ignore, Texture = TextureHandLeft, Size = _handL.Size, Position = _handL.TopLeft, @@ -68,6 +69,7 @@ namespace Content.Client.UserInterface AddChild(new TextureRect { + MouseFilter = MouseFilterMode.Ignore, Texture = TextureHandRight, Size = _handR.Size, Position = _handR.TopLeft, @@ -76,6 +78,7 @@ namespace Content.Client.UserInterface AddChild(ActiveHandRect = new TextureRect { + MouseFilter = MouseFilterMode.Ignore, Texture = TextureHandActive, Size = _handL.Size, Position = _handL.TopLeft,