-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSellValue.xml
36 lines (33 loc) · 1.07 KB
/
SellValue.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="SellValue.lua"/>
<Script file="Database.lua"/>
<GameTooltip name="SellValue_Tooltip" inherits="GameTooltipTemplate" parent="UIParent" hidden="true">
<Layers>
<Layer level="ARTWORK">
<FontString name="$parentTextLeft1" inherits="GameTooltipHeaderText" hidden="true"/>
<FontString name="$parentTextRight1" inherits="GameTooltipHeaderText" hidden="true"/>
</Layer>
</Layers>
</GameTooltip>
<Frame name="SellValue" parent="GameTooltip" hidden="false">
<Scripts>
<OnLoad>
SellValue_OnLoad();
</OnLoad>
<OnHide>
SellValue_OnHide();
</OnHide>
<OnEvent>
SellValue_OnEvent();
</OnEvent>
</Scripts>
<Frames>
<Frame name="$parentMoneyFrame" inherits="SmallMoneyFrameTemplate" hidden="false">
<Anchors>
<Anchor point="LEFT" relativePoint="LEFT"/>
</Anchors>
</Frame>
</Frames>
</Frame>
</Ui>