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

Method scroll

Minecraft-Utils/1.12.2/src/Gui2ndChat.java:236–249  ·  view source on GitHub ↗
(int scroll)

Source from the content-addressed store, hash-verified

234 }
235
236 @Override
237 public void scroll(int scroll) {
238 this.scrollPos += scroll;
239 int chatLines = this.singleChatLines.size();
240 if (this.scrollPos > chatLines - this.getLineCount()) {
241 this.scrollPos = chatLines - this.getLineCount();
242 }
243
244 if (this.scrollPos <= 0) {
245 this.scrollPos = 0;
246 this.isScrolled = false;
247 }
248
249 }
250
251 @Override
252 public void drawComponentHover(int mouseX, int mouseY) {

Callers 2

setChatLineMethod · 0.95
keyTypedMethod · 0.95

Calls 2

getLineCountMethod · 0.95
sizeMethod · 0.80

Tested by

no test coverage detected