Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #4699

Merged
merged 2 commits into from
Nov 11, 2023
Merged

fix #4699

Changes from 1 commit
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
3 changes: 2 additions & 1 deletion WeakAuras/WeakAuras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4052,10 +4052,11 @@ end

function Private.FixGroupChildrenOrderForGroup(data)
local frameLevel = 1;
local offset = data.regionType == "dynamicgroup" and 0 or 4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tweak this a bit more.

if data.parent == nil then
for child in Private.TraverseAll(data) do
SetFrameLevel(child.id, frameLevel);
frameLevel = frameLevel + 4;
frameLevel = frameLevel + offset;
end
end
end
Expand Down