From 8ae49876eca23832ad73afd7b2ee7af34959978f Mon Sep 17 00:00:00 2001 From: Huijie Wei Date: Sat, 29 Mar 2025 03:03:16 +0000 Subject: [PATCH] Fix Floating Combat Text panel #106 #104 --- gui/FloatingCombatTextConfigPanel.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/FloatingCombatTextConfigPanel.lua b/gui/FloatingCombatTextConfigPanel.lua index 9456228..0fe2770 100644 --- a/gui/FloatingCombatTextConfigPanel.lua +++ b/gui/FloatingCombatTextConfigPanel.lua @@ -89,7 +89,7 @@ function addon:CreateFloatingCombatTextOptions() }, floatingCombatTextCombatLogPeriodicSpells = { type = "toggle", - name = LOG_PERIODIC_EFFECTS, + name = LOG_PERIODIC_EFFECTS_TEXT or LOG_PERIODIC_EFFECTS, desc = OPTION_TOOLTIP_LOG_PERIODIC_EFFECTS, get = function() return C_CVar.GetCVarBool("floatingCombatTextCombatLogPeriodicSpells") @@ -102,7 +102,7 @@ function addon:CreateFloatingCombatTextOptions() }, floatingCombatTextPetMeleeDamage = { type = "toggle", - name = SHOW_PET_MELEE_DAMAGE, + name = SHOW_PET_MELEE_DAMAGE_TEXT or SHOW_PET_MELEE_DAMAGE, desc = OPTION_TOOLTIP_SHOW_PET_MELEE_DAMAGE, get = function() return C_CVar.GetCVarBool("floatingCombatTextPetMeleeDamage") @@ -129,7 +129,7 @@ function addon:CreateFloatingCombatTextOptions() }, floatingCombatTextCombatHealing = { type = "toggle", - name = SHOW_COMBAT_HEALING, + name = SHOW_COMBAT_HEALING_TEXT or SHOW_COMBAT_HEALING, desc = OPTION_TOOLTIP_SHOW_COMBAT_HEALING, get = function() return C_CVar.GetCVarBool("floatingCombatTextCombatHealing")