- Testing new sort method on Cooldowns and Customs, this is a try to fix the row changing places when actors have the same amount done.
- Minimalistic is now the skin default used by Details! after its instalation. - Many improvements over Default Skin, Minimalistic Skin and ElvUI Frame Style Skin. - Added 'Logos' and 'Raid & Dungeons' sections for Wallpapers. - Added a option to load a image from the computer to use as wallpaper. - Revamp on Image Editor, many bugs solves and now it is usable. - Few tweaks done on shortcut panel, now the buttons they are smaller and the panel can hold more. - Fixed 'While in Combat' hiding schema. - Fixed the report window alert when opening the report window and it already is opened. - Fixed the gap between last row created and the end of the window. - Fixed all tooltips bugs on Wallpaper Section on Options Panel.
This commit is contained in:
@@ -1589,6 +1589,24 @@ function DetailsCreateCoolTip()
|
||||
--> set cooltip type
|
||||
--> parameters: type (1 = tooltip | 2 = tooltip with bars | 3 = menu)
|
||||
|
||||
function CoolTip:IsMenu()
|
||||
return CoolTip.frame1:IsShown() and CoolTip.Type == 3
|
||||
end
|
||||
|
||||
function CoolTip:IsTooltip()
|
||||
return CoolTip.frame1:IsShown() and (CoolTip.Type == 1 or CoolTip.Type == 2)
|
||||
end
|
||||
|
||||
function CoolTip:GetType()
|
||||
if (CoolTip.Type == 1 or CoolTip.Type == 2) then
|
||||
return "tooltip"
|
||||
elseif (CoolTip.Type == 3) then
|
||||
return "menu"
|
||||
else
|
||||
return "none"
|
||||
end
|
||||
end
|
||||
|
||||
function CoolTip:SetType (newType)
|
||||
if (type (newType) == "string") then
|
||||
if (newType == "tooltip") then
|
||||
@@ -2547,6 +2565,7 @@ function DetailsCreateCoolTip()
|
||||
CoolTip.Host = nil
|
||||
gump:Fade (frame1, 1)
|
||||
gump:Fade (frame2, 1)
|
||||
|
||||
end
|
||||
|
||||
--> old function call
|
||||
|
||||
Reference in New Issue
Block a user