diff options
author | sumneko <sumneko@hotmail.com> | 2022-02-12 01:48:22 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2022-02-12 01:48:22 +0800 |
commit | 54a23672cc82d42a86932cf3245388c98c0c1bcc (patch) | |
tree | bcbd4054ed34a110de2644fc969ebd4534f0330c /script/progress.lua | |
parent | 94c2f533006597f0100158b5ddf92832b5022ad4 (diff) | |
download | lua-language-server-54a23672cc82d42a86932cf3245388c98c0c1bcc.zip |
fix
Diffstat (limited to 'script/progress.lua')
-rw-r--r-- | script/progress.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/progress.lua b/script/progress.lua index 3165820d..5388ef6e 100644 --- a/script/progress.lua +++ b/script/progress.lua @@ -112,7 +112,7 @@ function mt:_update() self:remove() return end - if time.time() - self._updated < 0.05 then + if time.time() - self._updated < 50 then return end self._dirty = false |