Skip to content

Commit

Permalink
fix errors from discord
Browse files Browse the repository at this point in the history
  • Loading branch information
fxpw committed Jul 10, 2024
1 parent 4178ace commit 04d7f27
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Modules/Misc/Loot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ local OnClick = function(self)
ss = self:GetID()
sq = self.quality
sn = self.name:GetText()
LootSlot(ss)
if not InCombatLockdown() then
LootSlot(ss)
end
end
end

Expand Down
2 changes: 1 addition & 1 deletion Modules/Skins/Blizzard/LFD.lua
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ local function LoadSkin()

S:HandlePortraitFrame(PVPLadderInfoFrame)
PVPLadderInfoFrame.CentralContainer:StripTextures()
PVPLadderInfoFrame.CentralContainer.BackgroundOverlay:SetAlpha(0)
-- PVPLadderInfoFrame.CentralContainer.BackgroundOverlay:SetAlpha(0)
S:HandleScrollBar(PVPLadderInfoFrame.CentralContainer.ScrollFrame.ScrollBar)
PVPLadderInfoFrame.CentralContainer.ScrollFrame.ShadowOverlay:StripTextures()
PVPLadderInfoFrame.TopContainer.ShadowOverlay:StripTextures()
Expand Down
2 changes: 1 addition & 1 deletion Modules/Skins/Blizzard_Sirus/Sirus_Inspect.lua
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ local function LoadSkin()
end)

InspectPVPFrame.Ladder.CentralContainer:StripTextures()
InspectPVPFrame.Ladder.CentralContainer.BackgroundOverlay:SetAlpha(0)
-- InspectPVPFrame.Ladder.CentralContainer.BackgroundOverlay:SetAlpha(0)

S:HandleScrollBar(InspectPVPFrameLadderCentralContainerScrollFrameScrollBar)

Expand Down

0 comments on commit 04d7f27

Please sign in to comment.