-
Notifications
You must be signed in to change notification settings - Fork 887
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to specify label font color? #101
Comments
I wanted something related to this question: how to set font on a label to bold. I just wanted to make specific label more visible inside the dialog screen. This is how I did it: extract existing font of the label, create new font, set it. Example: font := messageLB.Font() I also have another question on Fonts. How to set all fonts in the application to be about 2 pixels larger. If you have big monitor with high dpi default fonts are super small. Not all of my app clients have 20/20 vision... |
On setting widget text color: #21 Font is immutable, so the only way is to assign a new font. SetFont on a Container should propagate to descendent widgets. If it doesn't work, there is probably a bug. I'm not sure when I will be able to look into it. |
Both Font and Color should be properties of Text.
The text was updated successfully, but these errors were encountered: