Not signed in (Sign In)
  1.  
    After downloading Auctioneer Complete 3.4.1 Final Version, I noticed the width of my tooltips would slowly increase. Most noticeable while viewing someone's armor, where it would increase dramatically. If I had an ingame video recorder, I would show how it's acting. It does not do it with 3.2. Haven't test with the others yet.
  2.  
    Looks as if u ran into a bug already fixed by aradan in the current developer version.

    You could try, fixing it in ur version by editing the tooltip.lua in the enhTooltip-directory.

    Look for:
    width = math.max(width, currentTooltip:GetWidth())
    getglobal(currentTooltip:GetName().."TextLeft1"):SetWidth(width - 20)
    self.showIgnore=true;
    currentTooltip:Show()
    self.showIgnore=false;

    and replace this code by these lines:
    local cWidth = currentTooltip:GetWidth()
    if (cWidth < width) then
    getglobal(currentTooltip:GetName().."TextLeft1"):SetWidth(width - 20)
    self.showIgnore=true;
    currentTooltip:Show()
    self.showIgnore=false;
    else
    width = cWidth
    end

    Mod: moved to the correct forum and renamed the thread.
World of Warcraft™ and Blizzard Entertainment™ are trademarks or registered trademarks of Blizzard Entertainment, Inc. in the U.S. and/or other countries.