mirror of https://github.com/procxx/kepka.git
Restore setFamily in crash report window
Since setFamily in QApplication::setFont was removed
This commit is contained in:
parent
e149f10d40
commit
e13593b095
|
@ -90,6 +90,7 @@ void PreLaunchLabel::setText(const QString &text) {
|
||||||
|
|
||||||
PreLaunchInput::PreLaunchInput(QWidget *parent, bool password) : QLineEdit(parent) {
|
PreLaunchInput::PreLaunchInput(QWidget *parent, bool password) : QLineEdit(parent) {
|
||||||
QFont logFont(font());
|
QFont logFont(font());
|
||||||
|
logFont.setFamily(style::internal::GetFontOverride());
|
||||||
logFont.setPixelSize(static_cast<PreLaunchWindow*>(parent)->basicSize());
|
logFont.setPixelSize(static_cast<PreLaunchWindow*>(parent)->basicSize());
|
||||||
setFont(logFont);
|
setFont(logFont);
|
||||||
|
|
||||||
|
@ -107,6 +108,7 @@ PreLaunchInput::PreLaunchInput(QWidget *parent, bool password) : QLineEdit(paren
|
||||||
|
|
||||||
PreLaunchLog::PreLaunchLog(QWidget *parent) : QTextEdit(parent) {
|
PreLaunchLog::PreLaunchLog(QWidget *parent) : QTextEdit(parent) {
|
||||||
QFont logFont(font());
|
QFont logFont(font());
|
||||||
|
logFont.setFamily(style::internal::GetFontOverride());
|
||||||
logFont.setPixelSize(static_cast<PreLaunchWindow*>(parent)->basicSize());
|
logFont.setPixelSize(static_cast<PreLaunchWindow*>(parent)->basicSize());
|
||||||
setFont(logFont);
|
setFont(logFont);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue