Hmm yeah weird that it happened to you through the blizz addon menu as well though it didn't happen for me through blizz options just the standalone options.
Having a weird issue with my options menu. Here is the code for a module of my mod. As you can see in the options section I have 5 items in the options menu. If I remove any one of the options (so there are only 4 present) when I open the options menu and go to the options of that module wow basically freezes and looks like a slideshow (cpu being pinged for some reason) I am opening the options with this code by right clicking LDB feed:
if not C.OpenFrames["MorgDKP2"] then C:Open("MorgDKP2")
else C:Close("MorgDKP2") end
If I look at the options through the blizzard addons menu I it does not freeze and works normally. If I add another option (to give 5) or remove an option (to give 3) it works fine either way. That is why I currently have the useless:
sksotchead2 = {
type = "description",
name = "",
hidden = function() return not mdkp.db.profile.modules.SKSotC end,
order = 102
},
I am trying to get my broker display to properly display multiple icons with text mixed in. Here is what I have tried:
|T<path>:<width>[:<height>:<xOffset>:<yOffset>]|t
First I tried leaving width=0 which should make the icon the same size as the text but the icons seem considerably smaller than the text. On the plus side they stay lined up nicely though and don't seem to "climb".
Next I tried adding custom icon size and x/y offsets which makes the icon size controllable and they look better (to me) but if I add more icons and text they "climb" Seems like the text is attaching to the upper right of the icons instead of the center.
Using the y offset I can get the text and icons to line up but then they are higher on the display mod than other text (using dockingstation) So is there any way to change that attachment point or am I missing something?
Here is my function to update the broker text object:
function mod:UpdateBrokerText()
local icons
local text = ""
for _, itemid in ipairs(db.sortedtext) do
if ItemInfo[itemid] then
local data = ItemInfo[itemid]
text = text .. "|T" .. data.icon
if db.customicon then text = text .. ":" .. db.texticonsize .. ":" .. db.texticonsize .. ":" .. db.iconx .. ":" .. db.icony .. "|t"
else text = text .. ":0|t" end
local color
if data.count < data.max then color = "|c00FFFF00"
else color = "|c0000FF00" end
text = text .. color .. data.count .. "|r"
icons = true
end
end
if icons then
mod.obj.text = text
else
mod.obj.text = ""
end
end
Since yesterdays alpha (posted by 7 raid time not at home to check version) I am seeing the same stacking problem. Before 36 mana pots would be 1 stack of 36 and 396 symbols of kings would be 396 in 1 stack. Now they are displayed as 20 + 16 mana pots and 300 + 96 SOK's. Other items as well but those are the 2 i remember.
0
0
And it's broken atm won't even res anyone but havent investigated why yet.
0
0
0
0
0
0
If I look at the options through the blizzard addons menu I it does not freeze and works normally. If I add another option (to give 5) or remove an option (to give 3) it works fine either way. That is why I currently have the useless:
Any thoughts on what is going on with that?
0
Also any chance of that BOE category? I can beg:P
0
I am sure it will be fixed next alpha.
0
0
|T<path>:<width>[:<height>:<xOffset>:<yOffset>]|t
First I tried leaving width=0 which should make the icon the same size as the text but the icons seem considerably smaller than the text. On the plus side they stay lined up nicely though and don't seem to "climb".
Next I tried adding custom icon size and x/y offsets which makes the icon size controllable and they look better (to me) but if I add more icons and text they "climb" Seems like the text is attaching to the upper right of the icons instead of the center.
Using the y offset I can get the text and icons to line up but then they are higher on the display mod than other text (using dockingstation) So is there any way to change that attachment point or am I missing something?
Here is my function to update the broker text object:
0
0
0