Hi all,
I have designed my application using qt-4.4.3 and deployed to arm9 board.
But the font size is very small in the target how to increase its size.
Any help or suggestions
Thanks & Regards,
Soumya
Printable View
Hi all,
I have designed my application using qt-4.4.3 and deployed to arm9 board.
But the font size is very small in the target how to increase its size.
Any help or suggestions
Thanks & Regards,
Soumya
Hi,
Your app uses a default font. You can change that font and it's property, somewhere in main.cpp before the program starts do this. Where XX is the font size.
I imagine you may be able to change it from the command line also.
Code:
sysFont.font().setPointSize(XX); app.setFont(systemFont); OR to retrieve a pointer to the application systemFont.setPointSize(XX);