You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried to make window width bigger but it moves into the character frame
Screenshots
Version
v3.3.4
Classic Era
Code
On line 103 in Modules/Stats.lua, I did a "small hack", tried to do it elsewhere but nothing would work so this was my solution...
I'm sure these values could be better or figure out why it grows inside instead of out, would be a good start...
Funny thing is with this "hack", it grows out?
if ECS.IsSoD then
C_Timer.After(0.3, function ()
if EngravingFrame then
mainFrame:ClearAllPoints()
mainFrame:SetPoint("LEFT", EngravingFrame, "RIGHT", 10, 19)
end
end)
else -- the hack
C_Timer.After(0.3, function ()
if PaperDollItemsFrame then
local __x = 2
local __y = 2
mainFrame:ClearAllPoints()
mainFrame:SetPoint("LEFT", PaperDollItemsFrame, "RIGHT", ecs.general.window.xOffset + __x, ecs.general.window.yOffset + __y)
end
end)
end
end)
The text was updated successfully, but these errors were encountered:
Bug description
Tried to make window width bigger but it moves into the character frame
Screenshots
Version
v3.3.4
Classic Era
Code
On line 103 in Modules/Stats.lua, I did a "small hack", tried to do it elsewhere but nothing would work so this was my solution...
I'm sure these values could be better or figure out why it grows inside instead of out, would be a good start...
Funny thing is with this "hack", it grows out?
The text was updated successfully, but these errors were encountered: