Skip to content

Commit

Permalink
Cooldowns: Fix an options error when Blizzard cooldown text is enabled
Browse files Browse the repository at this point in the history
(closes #20)
  • Loading branch information
nebularg committed Jan 21, 2017
1 parent ed1c16b commit 544fd80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/Cooldowns/Displays/IconGroups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ local function GetOptions(self, db)
showCooldownText = {
name = L.showCooldownText,
desc = L.showCooldownTextDesc,
descStyle = not countdownForCooldowns and "inline",
descStyle = not countdownForCooldowns and "inline" or nil,
type = "toggle",
order = 4,
width = "full",
Expand Down
2 changes: 1 addition & 1 deletion modules/Cooldowns/Displays/Icons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ local function GetOptions(self, db)
showCooldownText = {
name = L.showCooldownText,
desc = L.showCooldownTextDesc,
descStyle = not countdownForCooldowns and "inline",
descStyle = not countdownForCooldowns and "inline" or nil,
type = "toggle",
order = 4,
width = "full",
Expand Down

0 comments on commit 544fd80

Please sign in to comment.