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

Method getContentHeight

Minecraft-Utils/1.11/src/GuiList.java:462–470  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

kMethod · 0.95

Calls 2

getHeaderPaddingMethod · 0.95
getLineHeightMethod · 0.65

Tested by

no test coverage detected