diff --git a/Libs/DF/fw.lua b/Libs/DF/fw.lua index 58a7d221..107ad038 100644 --- a/Libs/DF/fw.lua +++ b/Libs/DF/fw.lua @@ -1,6 +1,6 @@ -local dversion = 344 +local dversion = 345 local major, minor = "DetailsFramework-1.0", dversion local DF, oldminor = LibStub:NewLibrary (major, minor) @@ -731,7 +731,7 @@ function DF:SetFontRotation(fontString, degrees) if (not fontString.__rotationAnimation) then fontString.__rotationAnimation = DF:CreateAnimationHub(fontString) fontString.__rotationAnimation.rotator = DF:CreateAnimation(fontString.__rotationAnimation, "rotation", 1, 0, 0) - fontString.__rotationAnimation.rotator:SetEndDelay(math.huge) + fontString.__rotationAnimation.rotator:SetEndDelay(10^8) fontString.__rotationAnimation.rotator:SetSmoothProgress(1) end fontString.__rotationAnimation.rotator:SetDegrees(degrees) diff --git a/Libs/DF/label.lua b/Libs/DF/label.lua index 4bd855c0..66ffc35b 100644 --- a/Libs/DF/label.lua +++ b/Libs/DF/label.lua @@ -188,7 +188,7 @@ local LabelMetaFunctions = _G[DF.GlobalWidgetControlNames ["label"]] if (not object.__rotationAnimation) then object.__rotationAnimation = DF:CreateAnimationHub(object.label) object.__rotationAnimation.rotator = DF:CreateAnimation(object.__rotationAnimation, "rotation", 1, 0, 0) - object.__rotationAnimation.rotator:SetEndDelay(math.huge) + object.__rotationAnimation.rotator:SetEndDelay(10^8) object.__rotationAnimation.rotator:SetSmoothProgress(1) end object.__rotationAnimation.rotator:SetDegrees(rotation) diff --git a/functions/slash.lua b/functions/slash.lua index a09571aa..cfbd2bdb 100644 --- a/functions/slash.lua +++ b/functions/slash.lua @@ -1956,6 +1956,8 @@ end if (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE) then SLASH_KEYSTONE1 = "/keystone" + SLASH_KEYSTONE2 = "/keys" + SLASH_KEYSTONE3 = "/key" function SlashCmdList.KEYSTONE(msg, editbox) local openRaidLib = LibStub:GetLibrary("LibOpenRaid-1.0")