View Single Post
01-05-18, 02:50 PM   #9
Ammako
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Jun 2016
Posts: 256
Originally Posted by warcry16 View Post
edit: I don't really want to open another thread for little ui questions, but is it possible to move the dot icons on the nameplates further down? On my nameplates they are way to far above:

https://i.imgur.com/GzrYSKn.png

If there is another command for this , that would make my day !
Try

lua Code:
  1. hooksecurefunc(NameplateBuffContainerMixin, "UpdateAnchor", function(self)
  2.     self:SetPoint("BOTTOM", self:GetParent(), "TOP", 0, targetYOffset);
  3. end)
  Reply With Quote