Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Frames/Pets.lua
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ function DF:PositionPetFrame(frame)
elseif anchor == "LEFT" then
frame:SetPoint("RIGHT", frame.ownerFrame, "LEFT", offsetX, offsetY)
elseif anchor == "RIGHT" then
frame:SetPoint("LEFT", frame.ownerFrame, "RIGHT", -offsetX, offsetY)
frame:SetPoint("LEFT", frame.ownerFrame, "RIGHT", offsetX, offsetY)
end
end

Expand Down Expand Up @@ -883,9 +883,9 @@ function DF:UpdatePetGroupLayout()
end
elseif anchor == "RIGHT" then
if partyGrowth == "HORIZONTAL" then
container:SetPoint("LEFT", rightmostFrame, "RIGHT", -offsetX, offsetY)
container:SetPoint("LEFT", rightmostFrame, "RIGHT", offsetX, offsetY)
else
container:SetPoint("TOPLEFT", bottommostFrame, "TOPRIGHT", -offsetX, -centerOffsetY + offsetY)
container:SetPoint("TOPLEFT", topmostFrame, "TOPRIGHT", offsetX, -centerOffsetY + offsetY)
end
end

Expand Down