Closed adtzlr closed 6 years ago
Hi @adtzlr - yup there are lots of little things like this where the standard functions don't work on ttk widgets.
Luckily, you can just call the ttk functions directly on the widgets once you've added them:
# adding widgets always returns the widget
sc = app.addLabelScale("scale")
app.setScaleRange("scale",0,10,1)
sc.state(["disabled"])
Oh, and thank you so much for posting example code, it makes it so much quicker to work out the issue :)
Should now be resolved.
Hello,
I found out that appJar does not disable a Scale Widget in TTK-mode. Minimal (not :blush: ) working example:
whereas in normal (non-TTK) mode everything is fine. Thank you @jarvisteach !