Visual Changes
- Action Bars: Fixed bars were resetting position.
Doesn't work.
The Workaround what works is the following:
- searching ActionbarFrame Positions in savevariables.lua
- write a lua function that set actionbar frame position like following for all actionbars:
- _G["MainActionBarFrame"]:ClearAllAnchors();
_G["MainActionBarFrame"]:SetAnchor("BOTTOMRIGHT", "BOTTOMRIGHT", "UIParent", X, Y);
- _G["MainActionBarFrame"]:ClearAllAnchors();
- Register Event "LOADING_END" and "UPDATE_PARALLEL" to fix actionbar position after login and after channel changing
- if (event == "LOADING_END" or event == "UPDATE_PARALLEL") then
CallMyFunctionToPositionActionbars()
end
- if (event == "LOADING_END" or event == "UPDATE_PARALLEL") then
Greetings