Skip to content

Commit 10e7fd8

Browse files
committed
AceGUI-3.0: TreeGroup: Pass an explicit alpha value to SetText
Fixes CF-#685
1 parent 0735dc2 commit 10e7fd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AceGUI-3.0/widgets/AceGUIContainer-TreeGroup.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
TreeGroup Container
33
Container that uses a tree control to switch between groups.
44
-------------------------------------------------------------------------------]]
5-
local Type, Version = "TreeGroup", 48
5+
local Type, Version = "TreeGroup", 49
66
local AceGUI = LibStub and LibStub("AceGUI-3.0", true)
77
if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then return end
88

@@ -206,7 +206,7 @@ local function Button_OnEnter(frame)
206206
tooltip:SetOwner(frame, "ANCHOR_NONE")
207207
tooltip:ClearAllPoints()
208208
tooltip:SetPoint("LEFT",frame,"RIGHT")
209-
tooltip:SetText(frame.text:GetText() or "", 1, .82, 0, true)
209+
tooltip:SetText(frame.text:GetText() or "", 1, .82, 0, 1, true)
210210

211211
tooltip:Show()
212212
end

0 commit comments

Comments
 (0)