Adjusted Y Position of Checkboxes in GuiRenderSettings (advanced tab)

This commit is contained in:
CrushedPixel
2015-06-02 12:00:47 +02:00
parent 2331634af9
commit 53810c8ae7

View File

@@ -185,6 +185,8 @@ public class GuiRenderSettings extends GuiScreen {
GuiColorPicker picker = (GuiColorPicker)b;
picker.pickerX = b.xPosition + 25;
picker.pickerY = b.yPosition + 20 + 5;
} else if(b instanceof GuiCheckBox) {
b.yPosition += 5;
}
i++;