Skip to content

Commit

Permalink
Fix XML errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudbells authored and Rottenbeer committed Nov 28, 2024
1 parent 3dcc1ff commit 27c606c
Show file tree
Hide file tree
Showing 4 changed files with 173 additions and 129 deletions.
2 changes: 1 addition & 1 deletion ItemRack/ItemRack.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 30403, 40400
## Interface-Vanilla: 11504
## Interface-Vanilla: 11505
## Interface-TBC: 20504
## Interface-Wrath: 30403
## Interface-Cata: 40400
Expand Down
30 changes: 15 additions & 15 deletions ItemRack/ItemRack.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@
</Scripts>
</Frame>

<Frame name="ItemRackMenuFrame" frameStrata="HIGH" enableMouse="false" movable="true" parent="UIParent" hidden="true" clampedToScreen="true" topLevel="true">
<Frame name="ItemRackMenuFrame" frameStrata="HIGH" enableMouse="false" movable="true" parent="UIParent" hidden="true" clampedToScreen="true" topLevel="true" inherits="BackdropTemplate">
<Size>
<AbsDimension x="64" y="64" />
</Size>
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
<BackgroundInsets>
<AbsInset left="4" right="4" top="4" bottom="4" />
</BackgroundInsets>
<TileSize>
<AbsValue val="16" />
</TileSize>
<EdgeSize>
<AbsValue val="16" />
</EdgeSize>
<BorderColor>
<Color r=".3" g=".3" b=".3"/>
</BorderColor>
</Backdrop>
<Scripts>
<OnLoad>
local backdropInfo =
{
bgFile = "Interface\\DialogFrame\\UI-DialogBox-Background",
edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border",
tile = true,
tileEdge = true,
tileSize = 16,
edgeSize = 16,
insets = { left = 4, right = 4, top = 4, bottom = 4 },
}
self:SetBackdrop(backdropInfo)
self:SetBackdropBorderColor(0.3, 0.3, 0.3)
</OnLoad>
<OnHide>
ItemRack.MenuOnHide()
</OnHide>
Expand Down
2 changes: 1 addition & 1 deletion ItemRackOptions/ItemRackOptions.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 30403, 40400
## Interface-Vanilla: 11500
## Interface-Vanilla: 11505
## Interface-TBC: 20504
## Interface-Wrath: 30403
## Interface-Cata: 40400
Expand Down
Loading

0 comments on commit 27c606c

Please sign in to comment.