Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How to get default font size on android?
-
I tried to use:
QFont font; font.pointSize();
it returns 19, but it's too small and i think it is not the default font size.Help, please.
Thanx
-
@zword May be using QFontInfo
QFont font; QFontInfo fi(font.defaultFamily()); fi.pointSize();
-
No, didn't help.
fi.pointSize returned even smaller value: 12