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
increment
Slider
Using the gooey 1.0.81 , windows 10.
gooey 1.0.81
windows 10
The increment feature does not change anything. It is always shifting by 1. I can see that there are some differences between the code and the docs:
widget=Slider
Minimal example that reproduces the bug:
import argparse from gooey import Gooey, GooeyParser @Gooey def main(): parser = GooeyParser(description="Gooey Example with Slider") parser.add_argument("slider_value", widget="Slider", help="Select a value", gooey_options={"min": 0, "max": 100, "increment": 20}) args = parser.parse_args() print("The selected value is:", args.slider_value) if __name__ == '__main__': main()
The text was updated successfully, but these errors were encountered:
I have the same problem. Have you solved it?
Sorry, something went wrong.
No. Not any news regarding this topic
Can I work on this issue?
No branches or pull requests
Using the
gooey 1.0.81
,windows 10
.The
increment
feature does not change anything. It is always shifting by 1. I can see that there are some differences between the code and the docs:increment
field seems to be defined forwidget=Slider
increment
keyword inSlider
Minimal example that reproduces the bug:
The text was updated successfully, but these errors were encountered: