From 06e8e33f779c1203a54f0827b572448b783df608 Mon Sep 17 00:00:00 2001 From: Jakob Roberts Date: Wed, 27 Aug 2025 15:36:58 -0400 Subject: [PATCH] Add LOW strata to health bars (#1) The strata was defaulting much higher than it should be and was overlapping with other frames such as the character pane. This was applying to all bars including raid, player, and party. --- ShadowedUnitFrames/modules/health.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ShadowedUnitFrames/modules/health.lua b/ShadowedUnitFrames/modules/health.lua index d701f8f..08ccd67 100644 --- a/ShadowedUnitFrames/modules/health.lua +++ b/ShadowedUnitFrames/modules/health.lua @@ -53,7 +53,8 @@ function Health:OnEnable(frame) if( not frame.healthBar ) then frame.healthBar = ShadowUF.Units:CreateBar(frame) end - + frame:SetFrameStrata("LOW") + frame:RegisterUnitEvent("UNIT_HEALTH", self, "Update") frame:RegisterUnitEvent("UNIT_MAXHEALTH", self, "Update") frame:RegisterUnitEvent("UNIT_FACTION", self, "UpdateColor")