Thread: Journal
View Single Post
01-15-12, 06:13 PM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,936
Sounds like it might be linked to this section of the EncounterJournal.lua file:

Code:
function EncounterJournal_Loot_OnUpdate(self)

    if GameTooltip:IsOwned(self) then

        if IsModifiedClick("COMPAREITEMS") or

                 (GetCVarBool("alwaysCompareItems") and not self:IsEquippedItem()) then

            GameTooltip_ShowCompareItem();

        else

            ShoppingTooltip1:Hide();

            ShoppingTooltip2:Hide();

            ShoppingTooltip3:Hide();

        end

 

        if IsModifiedClick("DRESSUP") then

            ShowInspectCursor();

        else

            ResetCursor();

        end

    end

end
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote