# HG changeset patch # User Tercioo # Date 1453204044 7200 # Node ID d1963bd4521926ba1a679f5f9ee1ea625a0ea457 # Parent 5da06cb420d4833d5fc2e9e842147a3e4560164d - framework update. diff -r 5da06cb420d4 -r d1963bd45219 Hansgar_And_Franzok_Assist.lua --- a/Hansgar_And_Franzok_Assist.lua Sat Jan 02 13:33:05 2016 -0200 +++ b/Hansgar_And_Franzok_Assist.lua Tue Jan 19 09:47:24 2016 -0200 @@ -19,7 +19,7 @@ --local f = CreateFrame ("frame", "Hansgar_And_Franzok_Assist", UIParent) local f = DF:Create1PxPanel (_, 155, 166, "Hans & Franz", "Hansgar_And_Franzok_Assist", nil, "top", true) f:SetFrameStrata ("DIALOG") -f.version = "v0.16b" +f.version = "v0.16c" f.Close:SetScript ("OnClick", function (self) if (f.StampersPhase) then diff -r 5da06cb420d4 -r d1963bd45219 Libs/DF/cooltip.lua --- a/Libs/DF/cooltip.lua Sat Jan 02 13:33:05 2016 -0200 +++ b/Libs/DF/cooltip.lua Tue Jan 19 09:47:24 2016 -0200 @@ -67,6 +67,7 @@ --options table CoolTip.OptionsList = { + ["RightTextMargin"] = true, ["IconSize"] = true, ["HeightAnchorMod"] = true, ["WidthAnchorMod"] = true, @@ -652,6 +653,8 @@ menuButton.rightText:SetWidth (0) menuButton.rightText:SetHeight (0) + menuButton.rightText:SetPoint ("right", menuButton.rightIcon, "left", CoolTip.OptionsTable.RightTextMargin or -3, 0) + --> set text if (leftTextTable) then diff -r 5da06cb420d4 -r d1963bd45219 Libs/DF/fw.lua --- a/Libs/DF/fw.lua Sat Jan 02 13:33:05 2016 -0200 +++ b/Libs/DF/fw.lua Tue Jan 19 09:47:24 2016 -0200 @@ -1,5 +1,5 @@ -local dversion = 15 +local dversion = 16 local major, minor = "DetailsFramework-1.0", dversion local DF, oldminor = LibStub:NewLibrary (major, minor)