more tabgui & info height fix
This commit is contained in:
parent
d448755ac8
commit
fb06979043
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -24,7 +24,7 @@ public class Info extends RenderMod {
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getHeight() {
|
public int getHeight() {
|
||||||
return mc.fontRendererObj.FONT_HEIGHT * 6;
|
return mc.fontRendererObj.FONT_HEIGHT * 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -26,7 +26,7 @@ public class TabGui extends RenderMod{
|
||||||
|
|
||||||
public void draw() {
|
public void draw() {
|
||||||
Gui.drawRect(x, y, x+70, y+3+Category.values().length*16, 0x90000000);
|
Gui.drawRect(x, y, x+70, y+3+Category.values().length*16, 0x90000000);
|
||||||
RenderUtils.drawChromaRectangle(x, y+current*16, x+70, y+17f+current*16, 0.6f, 0xff900000);
|
RenderUtils.drawChromaRectangle(x, y+current*16, x+70, y+18f+current*16, 0.6f, 0xff900000);
|
||||||
|
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
for(Category c : Category.values()){
|
for(Category c : Category.values()){
|
||||||
|
@ -41,7 +41,7 @@ public class TabGui extends RenderMod{
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Gui.drawRect(x+70, y, x+138, y+3+Resent.INSTANCE.modManager.modsInCategory(category).size()*16, 0x90000000);
|
Gui.drawRect(x+70, y, x+138, y+3+Resent.INSTANCE.modManager.modsInCategory(category).size()*16, 0x90000000);
|
||||||
RenderUtils.drawChromaRectangle(x+70, y+category.i*16, x+138, y+17f+category.i*16, 0.6f, 0xff900000);
|
RenderUtils.drawChromaRectangle(x+70, y+category.i*16, x+138, y+18f+category.i*16, 0.6f, 0xff900000);
|
||||||
|
|
||||||
offset = 0;
|
offset = 0;
|
||||||
for(Mod m : Resent.INSTANCE.modManager.modsInCategory(category)){
|
for(Mod m : Resent.INSTANCE.modManager.modsInCategory(category)){
|
||||||
|
|
Loading…
Reference in New Issue
Block a user