I don't manage to find a way to modify the font in the About section in PyQt5 :
I would like Version 0.0 not being in bold.
Here is the code I used :
about_box = QMessageBox()
about_box.about(self.parent(), "About", "Appli\nVersion 0.0")
Apparently, it's just possible to enter a mere string in the About.
Someone knows how to pull this off ?
The
about
function is a static method: it is a "helper", which automatically constructs a message box, runs itsexec()
and returns its result. This means that there's no way to access the message box instance and, therefore, its font.Note that, since it's a static method, there's no use in creating a new instance of QMessageBox, as you could call
about
on the class alone:According to the sources, on MacOS Qt automatically uses a bold font for the label of all message boxes.
The solution is to avoid the static method, and create a new instance of QMessageBox. Since the label widget is private, the only way to access it is through
findChild()
, which on PyQt allows us to use both a class and an object name; luckily, Qt sets an object name for the label (qt_msgbox_label
), so we can access it and set the font accordingly: