diff --git a/boot.lua b/boot.lua index 360efb2b..b9bea979 100644 --- a/boot.lua +++ b/boot.lua @@ -8,7 +8,7 @@ _ = nil _detalhes = LibStub("AceAddon-3.0"):NewAddon("_detalhes", "AceTimer-3.0", "AceComm-3.0", "AceSerializer-3.0", "NickTag-1.0", "LibHotCorners") - _detalhes.userversion = "v1.15.3" --tirar guardian of ancient kingss + _detalhes.userversion = "v1.15.3a" --tirar guardian of ancient kingss _detalhes.version = "Alpha 019" _detalhes.realversion = 19 diff --git a/gumps/janela_options.lua b/gumps/janela_options.lua index 1b5ec892..8e7bca2d 100644 --- a/gumps/janela_options.lua +++ b/gumps/janela_options.lua @@ -6265,7 +6265,7 @@ function window:update_all (editing_instance) _G.DetailsOptionsWindow20TooltipAnchorDropdown.MyObject:Select (_detalhes.tooltip.anchored_to) _G.DetailsOptionsWindow20TooltipAnchorSideDropdown.MyObject:Select (_detalhes.tooltip.anchor_point) - _G.DetailsOptionsWindow20TooltipAnchorSideDropdown.MyObject:Select (_detalhes.tooltip.anchor_relative) + _G.DetailsOptionsWindow20TooltipRelativeSideDropdown.MyObject:Select (_detalhes.tooltip.anchor_relative) _G.DetailsOptionsWindow20TooltipOffsetXSlider.MyObject:SetValue (_detalhes.tooltip.anchor_offset[1]) _G.DetailsOptionsWindow20TooltipOffsetYSlider.MyObject:SetValue (_detalhes.tooltip.anchor_offset[2]) diff --git a/gumps/janela_principal.lua b/gumps/janela_principal.lua index 2b2fc473..7ea55a35 100644 --- a/gumps/janela_principal.lua +++ b/gumps/janela_principal.lua @@ -2099,14 +2099,13 @@ do local tooltip_anchor = CreateFrame ("frame", "DetailsTooltipAnchor", UIParent) tooltip_anchor:SetSize (140, 20) - tooltip_anchor:EnableMouse (false) tooltip_anchor:SetAlpha (0) tooltip_anchor:SetMovable (false) tooltip_anchor:SetClampedToScreen (true) tooltip_anchor.locked = true tooltip_anchor:SetBackdrop ({bgFile = [[Interface\Tooltips\UI-Tooltip-Background]], edgeFile = [[Interface\DialogFrame\UI-DialogBox-Border]], edgeSize = 10, insets = {left = 1, right = 1, top = 2, bottom = 1}}) tooltip_anchor:SetBackdropColor (0, 0, 0, 1) - + tooltip_anchor:SetScript ("OnEnter", function (self) tooltip_anchor.alert.animIn:Stop() tooltip_anchor.alert.animOut:Play() @@ -2190,6 +2189,7 @@ do text:SetPoint ("left", icon, "right", 6, 0) text:SetText (Loc ["STRING_OPTIONS_TOOLTIPS_ANCHOR_TEXT"]) + tooltip_anchor:EnableMouse (false) end