Skip to content

Commit

Permalink
Show tooltip icon for bulk cells when filtered but empty
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Oct 1, 2023
1 parent d1db68e commit 977fd43
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ public Optional<TooltipComponent> getTooltipImage(ItemStack is) {
if (AEConfig.instance().isTooltipShowCellContent()) {
if (inv.getStoredItem() != null) {
content.add(new GenericStack(inv.getStoredItem(), inv.getStoredQuantity()));
} else if (inv.getFilterItem() != null) {
content.add(new GenericStack(inv.getFilterItem(), 0));
}
}

Expand Down

0 comments on commit 977fd43

Please sign in to comment.