Oversized Qt Fonts on OSX -
Why does QT appear on the OSX default in larger fonts? Even when you manually select the same font size, the fonts look a bit bigger. Does the Qt OSX on OSX use a different font rendering? Does this improve if you use QT for cocoa?
Alternatively, is there a QTConfig tool or set the font setting for all QT applications globally?
Thank you!
Max Howell is correct. In native OS X applications, you have got the option to set small and small size in your windows and widgets. These will then select smaller fonts and also change the size of some graphical elements.
Many OS X designers use it, and therefore an application that does not follow these conventions, the OS is more likely to see X.
As mentioned, QT provides it which can change it: Qt :: WA_MacNormalSize
, Qt :: WA_MacSmallSize
, < Code> Qt :: WA_MacMiniSize , Qt :: WA_MacVariableSize
- but unfortunately, it seems that many people do not know about them and if they do, then their implementation is a hack Is a bit because it requires the code for #ifdef
s (if they are using an auxiliary work for this to reduce the effort) Will be.
Particularly bad that Qt does not have these attributes in their own Qt Creator or QT Designer Use in tables where the height of the large row makes almost unusable on small monitors, because you will need to always crawl to find the property you are looking for.
Comments
Post a Comment