diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-08-12 12:01:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-12 12:01:00 -0400 |
commit | ff601107f093e33f70e08a9453ed329e064ce45c (patch) | |
tree | adea35b7d9822ae248d22a3303843e563b974b4b /indra/llcommon/llcallbacklist.cpp | |
parent | 78e987883ac3b82466e603c5535fc0332736a0c2 (diff) | |
parent | b4fe47a5c0abac02d161640e04a9a78afb1c5987 (diff) |
Merge pull request #2209 from secondlife/viewer-lua-smoother
Introduce a custom coroutine/fiber scheduler to prioritize UI.
With approval from Maxim and Atlas, merging to project trunk.
Diffstat (limited to 'indra/llcommon/llcallbacklist.cpp')
-rw-r--r-- | indra/llcommon/llcallbacklist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcallbacklist.cpp b/indra/llcommon/llcallbacklist.cpp index 555c793333..647b268b8b 100644 --- a/indra/llcommon/llcallbacklist.cpp +++ b/indra/llcommon/llcallbacklist.cpp @@ -391,7 +391,7 @@ public: TimersListener(const LazyEventAPIParams& params): LLEventAPI(params) {} // Forbid a script from requesting callbacks too quickly. - static constexpr LLSD::Real MINTIMER{ 1.0 }; + static constexpr LLSD::Real MINTIMER{ 0.010 }; void scheduleAfter(const LLSD& params); void scheduleEvery(const LLSD& params); |