Abhay

Results 14 comments of Abhay

I was wondering if i could submit a Dictionary made with customtkinter as one of the Example Apps Check the repo here : https://github.com/TheFallen-Cat/VocabiPy @TomSchimansky

You're using `tk.DISABLED` which isnt supported by `CTk`, thus you have to pass `"disabled"` or `"normal"` as a string to `state`

Does it throw any errors? Also, why are you taking an argument `e` in your lambda function if you're not using it?

This [StackOverflow](https://stackoverflow.com/questions/24061099/tkinter-resize-background-image-to-window-size) question might help you.

Can you send any code examples, regarding what you're having problems with?

You can just replace the line `login_btn.bind('', lambda event: self.login_user())` to `login_btn.bind('', self.login_user)` there is no need to use the lambda function unless you are taking any arguments(which you're not,...

Yes, in order to place the image on right or left you can use the argument `compound="right"/"left"`

Ok, so you want the images to stick to the left side, no matter how long the text is?

@sim2511 can you send a minimum reproducible example?

Can you send a minimal reproducible example? P.S. Looking at the widgets, might it be a problem in the `base_widget_class.py` with the return value of the `apply_widget_scaling` function?