Commit f35dab3b authored by Ivaria's avatar Ivaria
Browse files

-- Better handling of tooltips missing zone information

parent dc260242
## Interface: 80200
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.102
## Version: 3.103
## Notes: Raid Frames providing click-heal functionality, buff and debuff control, main tank management and much more
## SavedVariablesPerCharacter: VUHDO_CONFIG, VUHDO_PANEL_SETUP, VUHDO_SPELL_ASSIGNMENTS, VUHDO_HOSTILE_SPELL_ASSIGNMENTS, VUHDO_MM_SETTINGS, VUHDO_PLAYER_TARGETS, VUHDO_MAINTANK_NAMES, VUHDO_BUFF_SETTINGS, VUHDO_POWER_TYPE_COLORS, VUHDO_SPELLS_KEYBOARD, VUHDO_SPELL_CONFIG, VUHDO_BUFF_ORDER, VUHDO_SPEC_LAYOUTS, VUHDO_GROUP_SIZE, VUHDO_RAID, VUHDO_INDICATOR_CONFIG
## SavedVariables: VUHDO_DEFAULT_LAYOUT, VUHDO_DEFAULT_PROFILE, VUHDO_PROFILES, VUHDO_MANUAL_ROLES, VUHDO_SPELL_LAYOUTS, VUHDO_USER_CLASS_COLORS, VUHDO_DEBUFF_BLACKLIST, VUHDO_BOUQUETS, VUHDO_COMBAT_LOG_TRACE, VUHDO_GLOBAL_CONFIG, VUHDO_DEBUG
......
## Interface: 80200
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.102
## Version: 3.103
## Notes: VuhDo Options
## SavedVariables: VUHDO_OPTIONS_SETTINGS
## SavedVariablesPerCharacter: VUHDO_GLOBAL_ICONS, VUHDO_GI_SCAN_IDX
......
......@@ -412,10 +412,13 @@ function VUHDO_getUnitZoneName(aUnit)
else
VuhDoScanTooltip:SetOwner(VuhDo, "ANCHOR_NONE");
VuhDoScanTooltip:ClearLines();
VuhDoScanTooltip:SetUnit(aUnit)
tZone = VuhDoScanTooltipTextLeft3:GetText();
VuhDoScanTooltip:SetUnit(aUnit);
if VuhDoScanTooltip:NumLines() > 2 then
tZone = VuhDoScanTooltipTextLeft3:GetText();
end
if tZone == "PvP" then
if tZone and tZone == "PvP" and VuhDoScanTooltip:NumLines() > 3 then
tZone = VuhDoScanTooltipTextLeft4:GetText();
end
end
......
Version 3.103
Known issues:
-- BfA stat squish cleanup still a work in progress
-- AOE Advice spell equations need complete overhaul
-- Some text providers need changes to better display small numbers
-- Debuff tooltips are currently bugged when using ElvUI
-- Deselect 'VuhDo Options > Panels > Tooltips > Tooltips > Debuffs'
Bugfixes:
-- Better handling of tooltips missing zone information
Improvements:
--------------------------------------------------------------
Version 3.102
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment