Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ls- committed Jul 25, 2018
2 parents 223ee6b + dd28cf0 commit ff1730b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Version 80000.06

- Fixed action buttons' icons' colouring.

## Version 80000.05

- Added "Desaturation" section to "Action Bars" config. Replaces "Desaturate on Cooldown" and
Expand Down
9 changes: 9 additions & 0 deletions config/blizzard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,15 @@ function CONFIG.CreateBlizzardPanel(_, order)
name = L["MIRROR_TIMER"],
desc = L["MIRROR_TIMER_DESC"],
disabled = isModuleDisabled,
get = function(info)
return C.db.profile.blizzard[info[#info - 1]][info[#info]]
end,
set = function(info, value)
if C.db.profile.blizzard[info[#info - 1]][info[#info]] ~= value then
C.db.profile.blizzard[info[#info - 1]][info[#info]] = value
BLIZZARD:UpdateMirrorTimers()
end
end,
args = {
enabled = {
order = 1,
Expand Down
2 changes: 1 addition & 1 deletion ls_UI.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 80000
## Author: lightspark
## Version: 80000.05
## Version: 80000.06
## Title: ls: |cff1a9fc0UI|r
## Notes: Yet another UI, but this one is a bit special...
## SavedVariablesPerCharacter: LS_UI_CHAR_CONFIG
Expand Down

0 comments on commit ff1730b

Please sign in to comment.