You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -159,7 +164,7 @@ public boolean mouseDragged(double mouseX, double mouseY, int button, double mou
159
164
booleaninGui = mouseX < left + internalWidth - 2*SIDE - PADDING && mouseX > left + PADDING && mouseY < top + internalHeight - TOP + 1 && mouseY > top + 2*PADDING;
160
165
if (this.selectedTab != null && inGui) {
161
166
for (BetterAdvancementWidgetbetterAdvancementEntryScreen : this.selectedTab.widgets.values()) {
162
-
if (betterAdvancementEntryScreen.isMouseOver(this.selectedTab.scrollX, this.selectedTab.scrollY, mouseX - left - PADDING, mouseY - top - 2*PADDING)) {
167
+
if (betterAdvancementEntryScreen.isMouseOver(this.selectedTab.scrollX, this.selectedTab.scrollY, mouseX - left - PADDING, mouseY - top - 2*PADDING, zoom)) {
163
168
164
169
if (betterAdvancementEntryScreen.betterDisplayInfo.allowDragging())
165
170
{
@@ -383,7 +388,7 @@ private void renderInside(GuiGraphics guiGraphics, int mouseX, int mouseY, int l
@@ -441,7 +446,7 @@ private void renderToolTips(GuiGraphics guiGraphics, int mouseX, int mouseY, int
441
446
guiGraphics.pose().pushPose();
442
447
guiGraphics.pose().translate(left + PADDING, top + 2*PADDING, 400.0D);
443
448
RenderSystem.enableDepthTest();
444
-
this.selectedTab.drawToolTips(guiGraphics,mouseX - left - PADDING, mouseY - top - 2*PADDING, left, top, right - left - 2*PADDING, bottom - top - 3*PADDING);
449
+
this.selectedTab.drawToolTips(guiGraphics,mouseX - left - PADDING, mouseY - top - 2*PADDING, left, top, right - left - 2*PADDING, bottom - top - 3*PADDING, zoom);
0 commit comments