Skip to content

Commit

Permalink
lower instant to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Nov 24, 2024
1 parent 72f9984 commit 2850a3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ElvUI/Core/Modules/Nameplates/StyleFilter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ end
do -- oUF style filter inject watch functions without actually registering any events
local object = CreateFrame('Frame')
object.delay = 0.1 -- update check rate
object.instant = 0.5 -- seconds since last event
object.instant = 0.3 -- seconds since last event
object.active = true -- off is always instant
object.tracked = {}
object.times = {}
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_Libraries/Core/oUF/simpy/pooler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object.events = {}
object.times = {}

object.delay = 0.1 -- update check rate
object.instant = 0.5 -- seconds since last event
object.instant = 0.3 -- seconds since last event
object.active = true -- off is always instant

pooler.run = function(funcs, frame, event, ...)
Expand Down

0 comments on commit 2850a3e

Please sign in to comment.