From 8d648cd5dce082d4c8e7a7d306dea4b64b8c67fb Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 15 Aug 2019 13:26:40 +0200 Subject: [PATCH] make groups not ignore mouse by default :V --- MLEM.Ui/Elements/Group.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/MLEM.Ui/Elements/Group.cs b/MLEM.Ui/Elements/Group.cs index 1089d20..a852408 100644 --- a/MLEM.Ui/Elements/Group.cs +++ b/MLEM.Ui/Elements/Group.cs @@ -5,7 +5,6 @@ namespace MLEM.Ui.Elements { public Group(Anchor anchor, Vector2 size, bool setHeightBasedOnChildren = true) : base(anchor, size) { this.SetHeightBasedOnChildren = setHeightBasedOnChildren; - this.IgnoresMouse = true; } }