Anthony Forsberg
Anthony Forsberg
Something is definitely firing though, as printing `root.focus_get()` itself returns `.!ctkentry.!entry` when you submit so it knows that *a* ctkentry is focused but doesn't return the name of *which*, may...
Seems like a pyinstaller issue to me, auto-py-to-exe is kind of a frontend for it. Check [here](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/?utm_source=auto_py_to_exe&utm_medium=readme_link&utm_campaign=auto_py_to_exe_help#modulenotfounderror-no-module-named-x-importerror-no-module-named-x) about missing modules. If you remove `darkdetect` I imagine you won't have light/dark...
Reformatted for readability. Personally not seeing anything in the code that should cause this, I have no issues with Python 3.11 with either the current release or dev branch running...
```python if my_entry.state == "readonly": my_entry.configure(fg_color="black") ``` Valid colors, info, etc: https://github.com/TomSchimansky/CustomTkinter/wiki/Themes#colors
> I just had the same problem today also Problem: my code: ans=textbox.get('0.0', 'end') Error code: AttributeError: 'CTkTextbox' object has no attribute 'get' But to solve it I went to...
Considering `CTkFrame` uses `Canvas` I imagine `CTkScrollbar` in the dev branch should be applicable to it when its finished as using `Canvas` seems to be the standard way of implementing...
> Hello > > After using customtkinter i have very strange problems with tkinter ending up in black screen on Mac M1. I tried to reproduce the problem it does...
It always seems to hang at the end but it does eventually finish though with the way the script is currently written it does not give a clear indication of...
I haven't had any issues in 3.11 so far and its what I currently test and develop on so this is almost definitely an issue with the distro. I was...
If you installed Python via the Microsoft Store I recommend you remove it and install it [the right way](https://www.python.org/downloads/). I've seen this error come up before and its usually caused...