View Single Post
06/20/17, 04:20 PM   #16
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2016
Posts: 409
You could try hooking the SetAnchor function for each scrollListRow. e.g.

local original = row.SetAnchor
row.setAnchor = function(self, ... AnchorPositionTop, ....) original(self, ... AnchorPositionBottom,...) end

Not sure of names, and this might not actually do what you want, you'd likely need to play around with it a bit.
  Reply With Quote