View Single Post
07/24/14, 03:56 AM   #6
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by pinstripesc View Post
Hi all,

I've been getting this error lately and don't know what addon it's coming from. I assumed it was Alphatools but the author said it wasn't his code.

EsoUI/Libraries/ZO_SortHeaderGroup/ZO_SortHeaderGroup.lua:264: attempt to index a nil value
stack traceback:
EsoUI/Libraries/ZO_SortHeaderGroup/ZO_SortHeaderGroup.lua:264: in function 'ZO_SortHeader_OnMouseEnter'
11557962843809674184:3: in function '(main chunk)'
EsoUI/Libraries/ZO_SortHeaderGroup/ZO_SortHeaderGroup.lua:269: attempt to index a nil value
stack traceback:
EsoUI/Libraries/ZO_SortHeaderGroup/ZO_SortHeaderGroup.lua:269: in function 'ZO_SortHeader_OnMouseExit'
12089123703077595437:3: in function '(main chunk)'


It seems to be when I hover over text? I hadn't even moved yet when I logged in and got it showing up.
I got this error when I move my mouse to the topleft corner of the screen. It is caused by Atlas addon, to be more specific it is this unused control in Atlas.xml:
xml Code:
  1. <Control name="SortHeaderFaction" inherits="ZO_SortHeaderIcon">
  2.     <OnInitialized>
  3.         ZO_SortHeader_InitializeArrowHeader(self, "status", ZO_SORT_ORDER_UP)
  4.         ZO_SortHeader_SetTooltip(self, "Faction")
  5.     </OnInitialized>                            
  6.     <Dimensions x="16" y="32" />
  7. </Control>
Reported here: http://www.esoui.com/portal.php?id=1...wbug&bugid=972

To fix this issue either delete or comment out lines above:
xml Code:
  1. <!--
  2.        <Control name="SortHeaderFaction" inherits="ZO_SortHeaderIcon">
  3.            <OnInitialized>
  4.                ZO_SortHeader_InitializeArrowHeader(self, "status", ZO_SORT_ORDER_UP)
  5.                ZO_SortHeader_SetTooltip(self, "Faction")
  6.            </OnInitialized>                            
  7.            <Dimensions x="16" y="32" />
  8.        </Control>
  9. -->
  Reply With Quote