-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
81 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
### Changes ### | ||
|
||
## Retail: ## | ||
* Update for Patch 9.2 - nothing mutch changed | ||
* Mainly updated some skins | ||
* Added Cosmic Healing Potion to the AutoButtons -- Retail | ||
* Add an option to disable my button skin | ||
* Updated some skins | ||
* Fixed an issue with the AddOn "Infinite Raid Tools" | ||
|
||
|
||
## Classic: ## | ||
* Take account for the latest ElvUI changes | ||
|
||
|
||
## TBC: ## | ||
* Take account for the latest ElvUI changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
[b][color=orange]Retail: v4.89[/color], 22.02.2022[/b][list] | ||
[*][b][color=orange]Retail:[/color][/b] | ||
[*]Update for Patch 9.2 - nothing mutch changed | ||
[*]Fix an error on the Encounter Journal Skin | ||
|
||
[*][b][color=orange]Classic:[/color][/b] | ||
[*]Take account for the latest ElvUI changes | ||
|
||
[*][b][color=orange]TBC:[/color][/b] | ||
[*]Take account for the latest ElvUI changes[/list] | ||
|
||
[b][color=orange]Retail: v4.90[/color], 07.03.2022[/b][list] | ||
[*]Added Cosmic Healing Potion to the AutoButtons -- Retail | ||
[*]Add an option to disable my button skin | ||
[*]Updated some skins | ||
[*]Fixed an issue with the AddOn "Infinite Raid Tools"[/list] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
ElvUI_MerathilisUI/Mainline/Modules/Skins/AddOns/Blizzard_ClickBindingUI.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
local MER, E, L, V, P, G = unpack(select(2, ...)) | ||
local MERS = MER:GetModule('MER_Skins') | ||
local S = E:GetModule('Skins') | ||
|
||
local _G = _G | ||
local hooksecurefunc = hooksecurefunc | ||
|
||
local function HandleScrollChild(self) | ||
for i = 1, self.ScrollTarget:GetNumChildren() do | ||
local child = select(i, self.ScrollTarget:GetChildren()) | ||
local icon = child and child.Icon | ||
if icon and not icon.IsChanged then | ||
if child and child.backdrop then | ||
child.backdrop:SetTemplate('Transparent') | ||
MERS:CreateGradient(child.backdrop) | ||
end | ||
icon.IsChanged = true | ||
end | ||
end | ||
end | ||
|
||
local function LoadSkin() | ||
if not E.private.skins.blizzard.enable and E.private.skins.blizzard.binding or not E.private.muiSkins.blizzard.binding then return end | ||
|
||
local frame = _G.ClickBindingFrame | ||
frame:Styling() | ||
|
||
hooksecurefunc(frame.ScrollBox, 'Update', HandleScrollChild) | ||
end | ||
|
||
S:AddCallbackForAddon("Blizzard_ClickBindingUI", "mUIClickBinding", LoadSkin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters