Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/bars/bars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ DFRL:NewMod("Bars", 1, function()
}
}

-- ✅ PATCH: Immersion compat helper (não força alpha quando Immersion estiver ativo)
-- Immersion compat helper
local _IsAddOnLoaded = (C_AddOns and C_AddOns.IsAddOnLoaded) or IsAddOnLoaded
local function DFRL_IsImmersionLoaded()
return _IsAddOnLoaded and _IsAddOnLoaded("Immersion")
Expand Down Expand Up @@ -370,7 +370,7 @@ DFRL:NewMod("Bars", 1, function()
_G["ActionButton"..i]:SetAlpha(0)
_G["ActionButton"..i]:EnableMouse(false)
else
-- ✅ PATCH: não forçar alpha quando Immersion estiver carregado
-- Do not force alpha while Immersion is loaded
if not DFRL_IsImmersionLoaded() then
_G["ActionButton"..i]:SetAlpha(1)
end
Expand Down
2 changes: 1 addition & 1 deletion modules/bars/range.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ DFRL:NewMod("RangeIndicator", 1, function()
if self.useSimple then
self.indicator = button:CreateFontString(nil, "OVERLAY")
self.indicator:SetFont("Fonts\\FRIZQT__.TTF", 20, "OUTLINE")
self.indicator:SetText("")
self.indicator:SetText("X")
if self.useDark then
self.indicator:SetTextColor(0, 0, 0)
else
Expand Down