MCPcopy Create free account
hub / github.com/5zig/The-5zig-Mod / getContentHeight

Method getContentHeight

Minecraft-Utils/1.12/src/GuiList.java:463–471  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

461 }
462
463 @Override
464 public int getContentHeight() {
465 int height = bottomPadding + (getHeaderPadding() > 0 ? (getHeaderPadding() + 8) : 0);
466 List<E> chatLines = Lists.newArrayList(rows);
467 for (Row row : chatLines) {
468 height += row.getLineHeight();
469 }
470 return height;
471 }
472
473 @Override
474 public void calculateHeightMap() {

Callers 1

kMethod · 0.95

Calls 2

getHeaderPaddingMethod · 0.95
getLineHeightMethod · 0.65

Tested by

no test coverage detected