We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to reproduce:
local DocView = require "core.docview" local omr = DocView.on_mouse_released function DocView:on_mouse_released(...) print 'on_mouse_released....' return omr(self, ...) --true --false --nil end local omp = DocView.on_mouse_pressed function DocView:on_mouse_pressed(...) print 'on_mouse_pressed' return omp(self, ...) end
on_mouse_pressed on_mouse_released.... on_mouse_released....
The text was updated successfully, but these errors were encountered:
adding debug line here:
lite/data/core/init.lua
Line 338 in 38bd9b3
shows that the error is on lua side. Here there is only one signal.
Sorry, something went wrong.
No branches or pull requests
to reproduce:
The text was updated successfully, but these errors were encountered: