Tiptac and outfitter interaction
Addonman opened this issue ยท 4 comments
When i resize size of tooltip in tiptac it also effects other addons or should i say Outfitter. Outfitter has like 2 or 3 cascadeing options windows and they get smaller and smaller. Barely readable.
Thank you for information. Its used by bunch of addons i use so i might not want to mess with that .
This is a bug in library "LibDropDownMC-1.0" which is used by Outfitter. To prevent cascading scales you can temporarily comment out the following line (112) in "\Outfitter\Libraries\LibDropdown-1.0.lua":
-- Make the frame match the tooltip
local function InitializeFrame(frame)
if TooltipBackdropTemplateMixin then
frame.layoutType = GameTooltip.layoutType
if GameTooltip.layoutType then
frame.NineSlice:SetCenterColor(GameTooltip.NineSlice:GetCenterColor())
frame.NineSlice:SetBorderColor(GameTooltip.NineSlice:GetBorderColor())
end
else
local backdrop = GameTooltip:GetBackdrop()
frame:SetBackdrop(backdrop)
if backdrop then
frame:SetBackdropColor(GameTooltip:GetBackdropColor())
frame:SetBackdropBorderColor(GameTooltip:GetBackdropBorderColor())
end
end
-- frame:SetScale(GameTooltip:GetScale()) <--------------------------------------
end
Additionally I created an enhancement issue to add styling of LibDropdown-1.0 because I think it's nice to have: #157
I added TipTac's styling of the dropdown menu from LibDropdownMC-1.0. Scaling is also considered. Works fine now in the dev version. If you want to try it for yourself, here it is:
This will be included in the upcoming release.