Hi All.
In my application i'm changing the colour of window by applying .qss.
but while applying default.qss UI's font is remaining un affected . but while applying Pagefold.qss font is getting changed from ariel-12 to default or some thing.
i tried to solve like following
QFont font("font: Arial", 12, QFont::System);
qApp->setFont(font);
bhut its changing whole application font.
I need to change only QLabel font to arial-12.
Can any body help me.