ToC Updates; Change logs; Framework update

This commit is contained in:
Tercio Jose
2021-11-02 19:30:06 -03:00
parent 1536e16274
commit e701c95fdd
13 changed files with 63 additions and 62 deletions
+2 -2
View File
@@ -274,7 +274,7 @@ function DF:CreateCoolTip()
--> main frame
local frame1
if (not GameCooltipFrame1) then
frame1 = CreateFrame ("Frame", "GameCooltipFrame1", UIParent, "TooltipBackdropTemplate, BackdropTemplate")
frame1 = CreateFrame ("Frame", "GameCooltipFrame1", UIParent, "BackdropTemplate")
tinsert (UISpecialFrames, "GameCooltipFrame1")
DF:CreateFlashAnimation (frame1)
@@ -302,7 +302,7 @@ function DF:CreateCoolTip()
--> secondary frame
local frame2
if (not GameCooltipFrame2) then
frame2 = CreateFrame ("Frame", "GameCooltipFrame2", UIParent,"TooltipBackdropTemplate, BackdropTemplate")
frame2 = CreateFrame ("Frame", "GameCooltipFrame2", UIParent,"BackdropTemplate")
tinsert (UISpecialFrames, "GameCooltipFrame2")
DF:CreateFlashAnimation (frame2)
+2 -1
View File
@@ -1,6 +1,6 @@
local dversion = 277
local dversion = 278
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary (major, minor)
@@ -4501,3 +4501,4 @@ end
-----------------------------------------------------------------------------------------------------------------------------------------------------------