Replies: 3 comments 8 replies
|
Hello @jeagh. It was a bug on pygubu. Try installing pygubu v0.35.4 Regards |
6 replies
|
I should have ask, do you want the ui.py file or the xml file? |
1 reply
|
I do already have a variable. The xml file is 117 lines, is that OK to post here or would an email attachment be better? |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I overcame the problem with the customtkinter checkbox and switch widgets but the problem with the slider seems to be due to a different reason. It occurs when the to and from values are set to anything other than left blank. If the values are left blank then the slider range is 0 - 1 and no error message is generated.
I have tried both int and double values but the problem persists.
In the code I currently have:
self.slider_var: tk.IntVar = Noneself.builder.import_variables(self)I did try tk.DoubleVar and set the to and from values to 1.0 and 100.0 but it didn't make any difference.
All reactions