From 0b464c3a0b8990fa03f58113e469b86997e48039 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Tue, 9 Jan 2024 12:24:39 +0700 Subject: [PATCH] Don't display "show recipes" on progress gauge because mouse cursor already tells that --- .../mc/otm/client/screen/widget/ProgressGaugePanel.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/widget/ProgressGaugePanel.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/widget/ProgressGaugePanel.kt index 8a9267fe6..bd295bbf7 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/widget/ProgressGaugePanel.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/widget/ProgressGaugePanel.kt @@ -54,11 +54,6 @@ open class ProgressGaugePanel( ) } - if (recipeTypeSupplier != null) { - tooltip.add(TextComponent("")) - tooltip.add(TranslatableComponent("jei.tooltip.show.recipes").withStyle(ChatFormatting.GRAY)) - } - return tooltip }