Replies: 2 comments
-
It is an "event modifier" in the underlying JustPy framework: We should make it configurable in NiceGUI. That's certainly something to tackle after our upcoming release of version 1.0. |
Beta Was this translation helpful? Give feedback.
0 replies
-
In NiceGUI 1.0 only high-frequent events like slider and joystick movements are throttled. All other events are sent immediately. And the generic event subscription |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://github.com/zauberzeug/nicegui/blob/aa2b30cfc6fed7a41ac00398dfb967915a29a0f9/nicegui/static/templates/js/event_handler.js
“jp_props.debounce” is 200.
This leads to high latency.
I added code to the first line: ("props.jp_props.debounce = 0;")
Then all operation become very fast.
But I can not find where the "jp_props.debounce" comes from.
Can someone explain? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions