View Single Post
03-04-13, 02:39 PM   #31
Lombra
A Molten Giant
 
Lombra's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 554
To FauxScrollFrame_OnVerticalScroll you should pass your update function, not its return value. (which is nil)
Code:
FauxScrollFrame_OnVerticalScroll(self, offset, BUTTON_HEIGHT, RemGank_ListFrame_Update(self))
becomes
Code:
FauxScrollFrame_OnVerticalScroll(self, offset, BUTTON_HEIGHT, RemGank_ListFrame_Update)
__________________
Grab your sword and fight the Horde!
  Reply With Quote