Skip to content

Commit

Permalink
RareScanner
Browse files Browse the repository at this point in the history
  • Loading branch information
Azilroka committed Aug 14, 2024
1 parent 38d521a commit cbae111
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions AddOnSkins/Skins/AddOns/RareScanner.lua
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
local AS, L, S, R = unpack(AddOnSkins)

function R:RareScanner()
S:HandleFrame(scanner_button, 'Default')
S:HandleCloseButton(scanner_button.CloseButton)
scanner_button.CloseButton:ClearAllPoints()
scanner_button.CloseButton:SetPoint("TOPRIGHT")
S:HandleButton(scanner_button.FilterEntityButton)
scanner_button.FilterEntityButton:SetNormalTexture([[Interface\WorldMap\Dash_64Grey]])
scanner_button.FilterEntityButton:ClearAllPoints()
scanner_button.FilterEntityButton:SetPoint("TOPLEFT", 5, -5)
S:HandleButton(scanner_button.UnfilterEnabledButton)
scanner_button.FilterEnabledTexture:SetTexture([[Interface\WorldMap\Skull_64]])
scanner_button.UnfilterEnabledButton:ClearAllPoints()
scanner_button.UnfilterEnabledButton:SetPoint("TOPLEFT", 5, -5)
S:HandleFrame(RARESCANNER_BUTTON, 'Default')
S:HandleButton(RARESCANNER_BUTTON.CloseButton)
RARESCANNER_BUTTON.CloseButton:ClearAllPoints()
RARESCANNER_BUTTON.CloseButton:SetPoint("TOPRIGHT", -5, -5)
S:HandleButton(RARESCANNER_BUTTON.FilterEntityButton)
RARESCANNER_BUTTON.FilterEntityButton:SetNormalTexture([[Interface\WorldMap\Dash_64Grey]])
RARESCANNER_BUTTON.FilterEntityButton:ClearAllPoints()
RARESCANNER_BUTTON.FilterEntityButton:SetPoint("TOPLEFT", 5, -5)
S:HandleButton(RARESCANNER_BUTTON.UnfilterEnabledButton)
RARESCANNER_BUTTON.FilterEnabledTexture:SetTexture([[Interface\WorldMap\Skull_64]])
RARESCANNER_BUTTON.UnfilterEnabledButton:ClearAllPoints()
RARESCANNER_BUTTON.UnfilterEnabledButton:SetPoint("TOPLEFT", 5, -5)```
end

AS:RegisterSkin('RareScanner')

0 comments on commit cbae111

Please sign in to comment.