@@ -167,6 +167,7 @@ local function CreateUnitBuffs(unitFrame, unit)
167167 local buffContainerHeight = (BuffsDB .Size + BuffsDB .Layout [5 ]) * buffRows - BuffsDB .Layout [5 ]
168168 unitFrame .BuffContainer :SetSize (buffContainerWidth , buffContainerHeight )
169169 unitFrame .BuffContainer :SetPoint (BuffsDB .Layout [1 ], unitFrame , BuffsDB .Layout [2 ], BuffsDB .Layout [3 ], BuffsDB .Layout [4 ])
170+ unitFrame .BuffContainer :SetFrameStrata (" MEDIUM" )
170171 unitFrame .BuffContainer .size = BuffsDB .Size
171172 unitFrame .BuffContainer .spacing = BuffsDB .Layout [5 ]
172173 unitFrame .BuffContainer .num = BuffsDB .Num
@@ -207,6 +208,7 @@ local function CreateUnitDebuffs(unitFrame, unit)
207208 local debuffContainerHeight = (DebuffsDB .Size + DebuffsDB .Layout [5 ]) * debuffRows - DebuffsDB .Layout [5 ]
208209 unitFrame .DebuffContainer :SetSize (debuffContainerWidth , debuffContainerHeight )
209210 unitFrame .DebuffContainer :SetPoint (DebuffsDB .Layout [1 ], unitFrame , DebuffsDB .Layout [2 ], DebuffsDB .Layout [3 ], DebuffsDB .Layout [4 ])
211+ unitFrame .DebuffContainer :SetFrameStrata (" MEDIUM" )
210212 unitFrame .DebuffContainer .size = DebuffsDB .Size
211213 unitFrame .DebuffContainer .spacing = DebuffsDB .Layout [5 ]
212214 unitFrame .DebuffContainer .num = DebuffsDB .Num
@@ -255,6 +257,7 @@ function UUF:UpdateUnitAuras(unitFrame, unit)
255257 unitFrame .BuffContainer :ClearAllPoints ()
256258 unitFrame .BuffContainer :SetSize (buffContainerWidth , buffContainerHeight )
257259 unitFrame .BuffContainer :SetPoint (BuffsDB .Layout [1 ], unitFrame , BuffsDB .Layout [2 ], BuffsDB .Layout [3 ], BuffsDB .Layout [4 ])
260+ unitFrame .BuffContainer :SetFrameStrata (" MEDIUM" )
258261 unitFrame .BuffContainer .size = BuffsDB .Size
259262 unitFrame .BuffContainer .spacing = BuffsDB .Layout [5 ]
260263 unitFrame .BuffContainer .num = BuffsDB .Num
@@ -282,6 +285,7 @@ function UUF:UpdateUnitAuras(unitFrame, unit)
282285 local debuffContainerHeight = (DebuffsDB .Size + DebuffsDB .Layout [5 ]) * debuffRows - DebuffsDB .Layout [5 ]
283286 unitFrame .DebuffContainer :ClearAllPoints ()
284287 unitFrame .DebuffContainer :SetSize (debuffContainerWidth , debuffContainerHeight )
288+ unitFrame .DebuffContainer :SetFrameStrata (" MEDIUM" )
285289 unitFrame .DebuffContainer :SetPoint (DebuffsDB .Layout [1 ], unitFrame , DebuffsDB .Layout [2 ], DebuffsDB .Layout [3 ], DebuffsDB .Layout [4 ])
286290 unitFrame .DebuffContainer .size = DebuffsDB .Size
287291 unitFrame .DebuffContainer .spacing = DebuffsDB .Layout [5 ]
@@ -351,7 +355,7 @@ function UUF:CreateTestAuras(unitFrame, unit)
351355 button :SetBackdrop (UUF .BACKDROP )
352356 button :SetBackdropColor (0 , 0 , 0 , 0 )
353357 button :SetBackdropBorderColor (0 , 0 , 0 , 1 )
354- button :SetFrameStrata (" MEDIUM " )
358+ button :SetFrameStrata (" HIGH " )
355359
356360 button .Icon = button :CreateTexture (nil , " BORDER" )
357361 button .Icon :SetAllPoints ()
0 commit comments