v1.2.0: fixed cut off tooltips in the quick use window

This commit is contained in:
Evan Debenham 2022-02-16 18:22:26 -05:00
parent 0c5a0332e5
commit 36987fbdc9

View File

@ -125,6 +125,11 @@ public class WndQuickBag extends Window {
Game.scene().addToFront(new WndUseItem(WndQuickBag.this, item)); Game.scene().addToFront(new WndUseItem(WndQuickBag.this, item));
return true; return true;
} }
@Override
protected String hoverText() {
return null; //no tooltips here
}
}; };
slot.setRect(left, top, btnWidth, btnHeight); slot.setRect(left, top, btnWidth, btnHeight);
add(slot); add(slot);