aboutsummaryrefslogtreecommitdiff
path: root/plugins/ipc.lua
diff options
context:
space:
mode:
authorjgmdev <jgmdev@gmail.com>2023-05-02 14:34:57 -0400
committerjgmdev <jgmdev@gmail.com>2023-05-02 14:34:57 -0400
commit1cf38cf027f057431e9e80608cf0f91ab22cffdf (patch)
tree9b909c0a8a741d6d6db79cb2a805aa4f105c363b /plugins/ipc.lua
parent8ff726fe4823e9881208dd665878876cc9189b2d (diff)
downloadlite-xl-plugins-1cf38cf027f057431e9e80608cf0f91ab22cffdf.tar.gz
lite-xl-plugins-1cf38cf027f057431e9e80608cf0f91ab22cffdf.zip
IPC: return from overriden system.wait_event
Diffstat (limited to 'plugins/ipc.lua')
-rw-r--r--plugins/ipc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ipc.lua b/plugins/ipc.lua
index 16eab5d..428c4cf 100644
--- a/plugins/ipc.lua
+++ b/plugins/ipc.lua
@@ -828,12 +828,12 @@ system.wait_event = function(timeout)
local h = 0.5 / 2
local dt = math.ceil(t / h) * h - t
- system_wait_event(dt + 1 / config.fps)
+ return system_wait_event(dt + 1 / config.fps)
else
- system_wait_event()
+ return system_wait_event()
end
else
- system_wait_event(timeout)
+ return system_wait_event(timeout)
end
end