PDA

View Full Version : set QApplication default font using qss



lni
30th September 2015, 03:11
Hi,

I am trying to set QApplication default font using following qss, but it doesn't work. How can I do that? Thanks


QApplication {
font-family: Arial;
font-size: 12px;
font-weight: Normal;
}

Lesiok
30th September 2015, 07:15
Try this :
* {
font-family: Arial;
font-size: 12px;
font-weight: Normal;
}