Fix "no materials loaded" messege in lathes (#28885)

fix
This commit is contained in:
Deserty0
2024-06-12 20:32:11 +10:00
committed by GitHub
parent 9a32a1949c
commit 90354fa6d3

View File

@@ -87,6 +87,6 @@ public sealed partial class MaterialStorageControl : ScrollContainer
}
_currentMaterials = mats;
NoMatsLabel.Visible = ChildCount == 1;
NoMatsLabel.Visible = MaterialList.ChildCount == 1;
}
}