View Single Post
10/09/23, 02:14 AM   #13
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,999
You are welcome, glad it worked now

btw, I'd remove these extra code lines by commenting them:

Lua Code:
  1. --[[
  2. SecurePostHook(GAMEPAD_CHAT_SYSTEM, "Minimize", function()  
  3.          local self = GAMEPAD_CHAT_SYSTEM
  4.          if self.newChatFadeAnim and self.newChatFadeAnim:IsPlaying() then self.newChatFadeAnim:Stop() end
  5.          self.chatBubble:SetAlpha(0)
  6.       end)
  7. ]]

That way you still got them in and can spy them but they are not used (they are simply not needed and every non needed but run code slows down the game, and might create problems, so better strip it).
  Reply With Quote