Skip to content

Commit

Permalink
Fixed passvalue not passed to callback functions in Dewdrop lib
Browse files Browse the repository at this point in the history
  • Loading branch information
laytya committed Sep 4, 2022
1 parent 0e84695 commit c56ab3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Chronometer/libs/DewDrop-2.0/Dewdrop-2.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Dependencies: AceLibrary
]]

local MAJOR_VERSION = "Dewdrop-2.0"
local MINOR_VERSION = "$Revision: 17882 $"
local MINOR_VERSION = "$Revision: 17890 $"

if not AceLibrary then error(MAJOR_VERSION .. " requires AceLibrary") end
if not AceLibrary:IsNewVersion(MAJOR_VERSION, MINOR_VERSION) then return end
Expand Down Expand Up @@ -1054,6 +1054,7 @@ function Dewdrop:FeedAceOptionsTable(options, difference)
end
local name = (v.guiIconOnly and v.icon) and "" or (v.guiName or v.name)
local desc = v.desc
local passValue = v.passValue
local iconHeight = v.iconHeight or 16
local iconWidth = v.iconWidth or 16
local iconCoordLeft = v.iconCoordLeft
Expand Down

0 comments on commit c56ab3d

Please sign in to comment.