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

Method scroll

Minecraft-Utils/1.8/src/Gui2ndChat.java:232–245  ·  view source on GitHub ↗
(int scroll)

Source from the content-addressed store, hash-verified

230 }
231
232 @Override
233 public void scroll(int scroll) {
234 this.scrollPos += scroll;
235 int chatLines = this.singleChatLines.size();
236 if (this.scrollPos > chatLines - this.getLineCount()) {
237 this.scrollPos = chatLines - this.getLineCount();
238 }
239
240 if (this.scrollPos <= 0) {
241 this.scrollPos = 0;
242 this.isScrolled = false;
243 }
244
245 }
246
247 @Override
248 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