How to disable an event previously enabled #192
-
I am trying yo create a cursor slider: it works fine on the local machine, but it's slow on the network. |
Beta Was this translation helpful? Give feedback.
Answered by
martinRenou
Apr 27, 2021
Replies: 1 comment 2 replies
-
Hey, would setting e.g. from ipywidgets import IntSlider
slider = IntSlider(continous_update=False) |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
martinRenou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, would setting
continuous_update=False
to your slider work? This will send the event only when you are done moving the slider.e.g.