Rendering issue on Windows 11 #1720
Replies: 9 comments 16 replies
-
What fonts are you using in your theme? |
Beta Was this translation helpful? Give feedback.
-
The copyright label uses The User Manual and csv template links both use |
Beta Was this translation helpful? Give feedback.
-
@cheddarking - It looks like the fonts are the problem. I think we can rule out OS or OS version as you mentioned that some Windows 11 users are able to run the program properly. Maybe the users (those facing issues) don't have the font installed. How are you providing the font? Is it being loaded or are you assuming the font is installed? I also don't think this is a CustomTkinter issue. A better place for this would've been in the Discussions tab of this repository. Perhaps the Q&A section. |
Beta Was this translation helpful? Give feedback.
-
@cheddarking - Just checked this page, the font Inter is not installed on Windows 11 by default. The problem may be that you are assuming the font to be installed rather than providing it with the app. Interesting, Windows 10 also does not have Inter installed... I guess my initial assumptions were incorrect. I am a macOS user, so I doubt I'll be of much help. |
Beta Was this translation helpful? Give feedback.
-
@cheddarking there is just a different font used than you intended, either you have to install it properly or the name is not specific enough. |
Beta Was this translation helpful? Give feedback.
-
Python usually loads via CPU and so does tkinter but loading graphics requires lot of computation plus single threaded programming and kernel crashes on Windows 11 can lead to performance issues. |
Beta Was this translation helpful? Give feedback.
-
Most likely, the font are just not installed on your machine, either install those fonts or use a different font altogether to test things out, This is not windows problem. |
Beta Was this translation helpful? Give feedback.
-
That makes sense... But there is no traceback, so no exception is being thrown... Meaning the font is being found? |
Beta Was this translation helpful? Give feedback.
-
Thanks for all your contributions, sorry I have been out of the loop. I just specified this font size assuming that it was supported by CustomTkinter. Interestingly enough it works on both Windows 10 and 11 but not some 11 users. Not sure why that is. Is there a list of fonts that are safe/supported in CustomTkinter? |
Beta Was this translation helpful? Give feedback.
-
I have written a program for my windows users and it works fine on Windows 10, however on some (not all) Windows 11 users' machines some rendering issues occur. Please see below
Working on Windows 11
Not working on Windows 11
As you can see some of the text and hyperlinks get garbled. What could be causing this?
Beta Was this translation helpful? Give feedback.
All reactions