View Single Post
04/09/15, 04:22 AM   #5
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
Originally Posted by sirinsidiator View Post
I had the same issue a while ago and put the following code in one of my private addons, then totally forgot about it
Lua Code:
  1. local map = SCENE_MANAGER:GetScene("worldMap")
  2. SCENE_MANAGER:RegisterCallback("SceneStateChanged", function(scene, oldState, newState)
  3.     if(scene == map and newState == SCENE_FRAGMENT_HIDDEN) then
  4.         ClearTooltipImmediately(InformationTooltip)
  5.         ClearTooltipImmediately(ZO_MapLocationTooltip)
  6.         ZO_KeepTooltip:SetHidden(true)
  7.     end
  8. end)

i got it not only after world map but when cloe guilds, or quest journal
  Reply With Quote