We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
continuous_update=False
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
Run this:
from ipywidgets import widgets slider = widgets.IntSlider( min=1, max=100, step=1, continuous_update=False, description="Test", ) widgets.VBox([ slider, widgets.interactive_output(lambda **kw: display(f"kw: {kw}"), {"slider": slider}) ])
Click here:
The slider will move to under the click position, but no event will be generated:
Click the scrubber (now under your cursor):
That will generate the event.
I'm pretty sure an event should be generated after the slider moves without the second click.
The text was updated successfully, but these errors were encountered:
Oops! Duplicate of #3597.
Sorry, something went wrong.
No branches or pull requests
Run this:
Click here:
The slider will move to under the click position, but no event will be generated:
Click the scrubber (now under your cursor):
That will generate the event.
I'm pretty sure an event should be generated after the slider moves without the second click.
The text was updated successfully, but these errors were encountered: