-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitMemo.xml
39 lines (36 loc) · 1.05 KB
/
UnitMemo.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
37
38
39
<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">
<!-- $Id$ -->
<!-- Localization -->
<Script file="Notes.lua"/>
<!-- Scripts -->
<Script file="UnitMemo.lua"/>
<!-- My AddOn Frames -->
<Frame name="UnitMemoFrame" parent="UIParent" movable="true">
<Scripts>
<OnLoad>
UnitMemo_OnLoad();
</OnLoad>
<OnEvent>
UnitMemo_OnEvent(event);
</OnEvent>
</Scripts>
<Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
<BackgroundInsets left="4" right="4" top="4" bottom="4" />
<TileSize val="12" />
<EdgeSize val="12" />
<Color r="0.157" g="0.08" b="0.06" a="1" />
</Backdrop>
<Layers>
<Layer level="OVERLAY">
<FontString name="$parent_Text" inherits="GameFontNormal" justifyH="LEFT" text="">
<Anchors>
<Anchor point="CENTER"/>
</Anchors>
</FontString>
</Layer>
</Layers>
</Frame>
</Ui>