1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-04 06:13:36 +02:00

make groups not ignore mouse by default :V

This commit is contained in:
Ellpeck 2019-08-15 13:26:40 +02:00
parent 6ede030138
commit 8d648cd5dc

View file

@ -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;
}
}