From 6f50bc96eff2eace7c0c0f41bd2bb2d50b2b01bc Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Sat, 26 Mar 2022 18:21:58 +0100 Subject: [PATCH] Healthbar show nametext when custom tags enabled --- Modules/Healthbar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Healthbar.lua b/Modules/Healthbar.lua index 4b05cc9..f611a42 100644 --- a/Modules/Healthbar.lua +++ b/Modules/Healthbar.lua @@ -210,7 +210,7 @@ function Healthbar:UpdateFrame(unit) healthBar.nameText:Hide() else healthBar.nameText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), Gladdy.db.healthBarNameFontSize, Gladdy.db.healthTextLeftOutline and "OUTLINE") - if Gladdy.db.healthName then + if Gladdy.db.healthName or Gladdy.db.healthCustomTagsEnabled then healthBar.nameText:Show() else healthBar.nameText:Hide()