Thread: Update 5.3
View Single Post
01/20/20, 07:20 PM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
Chat related

Removed function in patch 5.3.:
CHAT_SYSTEM:CreateChannelData()

New function to use: There seems to be no explizit function for this anymore.
The old function was building the self.switchLookup = {} table of the chat system which now can be done by:
self.channelData = ZO_ChatSystem_GetChannelInfo()
self.switchLookup = ZO_ChatSystem_GetChannelSwitchLookupTable()

-> File: https://github.com/esoui/esoui/blob/...m/chatdata.lua

Changed control names:
Chat tab - Old name:
ZO_ChatWindowTabTemplate1

Chat tab - New name:
GuiRootKeyboard1 ... n
Probably GuiRootGamepad1 ... n in Gamepad mode

Not sure if this was an intended change by ZOs though. Reported it to Chip.
Update: Communicated the wrong control names to ZOs and ZOs will fix this.


Context menu related
Function IsMenuVisisble (including typo) was renamed to IsMenuVisible() correctly now!

Last edited by Baertram : 01/27/20 at 04:51 AM.
  Reply With Quote