mould/preform overlay: toggling "Mould Info Overlay" will correctly turn off mould/preform score overlay.

This commit is contained in:
Louis Hong
2024-10-29 01:06:11 -07:00
parent 3d90c4cbb5
commit 3c2075fc6e

View File

@@ -119,10 +119,13 @@ public class FoundryOverlay3D extends Overlay
if (config.highlightCrucible())
{
drawCrucibleIfMouldSet(graphics);
}
if (config.drawMouldInfoOverlay())
{
drawMouldScoreIfMouldSet(graphics);
drawPreformScoreIfPoured(graphics);
}
drawPreformScoreIfPoured(graphics);
return null;
}