diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndQuickBag.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndQuickBag.java index 051552d8e..fa3d5d517 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndQuickBag.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndQuickBag.java @@ -125,6 +125,11 @@ public class WndQuickBag extends Window { Game.scene().addToFront(new WndUseItem(WndQuickBag.this, item)); return true; } + + @Override + protected String hoverText() { + return null; //no tooltips here + } }; slot.setRect(left, top, btnWidth, btnHeight); add(slot);