View Single Post
03-19-20, 07:44 PM   #12
Vrul
A Scalebane Royal Guard
 
Vrul's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2007
Posts: 404
Originally Posted by gmarco View Post
The last problem is the tooltip doesn't disappear and last forever.
Have I removed too much in the OnLeave ?
Yeah, change it to this:
Code:
    OnLeave = function(self, motion)
        print("Leaving/Hiding broker frame")
        if tooltip and not tooltip:IsMouseOver() then
            tooltip:Release()
        end
    end
  Reply With Quote