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

Method scroll

Minecraft-Utils/1.10.2/src/Gui2ndChat.java:239–252  ·  view source on GitHub ↗
(int scroll)

Source from the content-addressed store, hash-verified

237 }
238
239 @Override
240 public void scroll(int scroll) {
241 this.scrollPos += scroll;
242 int chatLines = this.singleChatLines.size();
243 if (this.scrollPos > chatLines - this.getLineCount()) {
244 this.scrollPos = chatLines - this.getLineCount();
245 }
246
247 if (this.scrollPos <= 0) {
248 this.scrollPos = 0;
249 this.isScrolled = false;
250 }
251
252 }
253
254 @Override
255 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