View Single Post
05/06/14, 06:00 PM   #2
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Criscal View Post
Hi,

for my add-on, I would like to really put the check-marks on top of other things - like the icon for the item. I tried with the DrawLevel method using a very high value, but it doesn't go all the way - it only improved the situation somewhat, but it doesn't work in 100% of the cases.
Help is appreciated .

Thanks,

Criscal
You can try something like Esohead addon uses for coordinates:
Lua Code:
  1. myControl:SetDrawLayer(targetControl:GetDrawLayer() + 1)
  Reply With Quote