Alter inspect slot backdrop creation.
Darth Predator [06-19-17 - 10:40]
Alter inspect slot backdrop creation.
This fixes #480
diff --git a/ElvUI_SLE/modules/Armory/InspectArmory/InspectArmory.lua b/ElvUI_SLE/modules/Armory/InspectArmory/InspectArmory.lua
index 4367c91..54cdfe8 100644
--- a/ElvUI_SLE/modules/Armory/InspectArmory/InspectArmory.lua
+++ b/ElvUI_SLE/modules/Armory/InspectArmory/InspectArmory.lua
@@ -645,12 +645,7 @@ function IA:CreateInspectFrame()
-- Slot
Slot = CreateFrame('Button', nil, self)
Slot:Size(SLOT_SIZE)
- Slot:SetBackdrop({
- bgFile = E.media.blankTex,
- edgeFile = E.media.blankTex,
- tile = false, tileSize = 0, edgeSize = E.mult,
- insets = { left = 0, right = 0, top = 0, bottom = 0}
- })
+ Slot:SetTemplate("Transparent")
Slot:SetFrameLevel(CORE_FRAME_LEVEL + 3)
Slot.ReplaceTooltipLines = {}
Slot:SetScript('OnEnter', self.EquipmentSlot_OnEnter)