mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Increase fixed font point size on Windows
* Consolas runs smaller then the default system font. Increasing by 1 point size makes them look equal.
This commit is contained in:
parent
ea77ee686d
commit
10f4704724
1 changed files with 4 additions and 1 deletions
|
@ -34,13 +34,16 @@ QFont Font::fixedFont()
|
|||
auto consolasFont = QFontDatabase().font("Consolas", fixedFont.styleName(), fixedFont.pointSize());
|
||||
if (consolasFont.family().contains("consolas", Qt::CaseInsensitive)) {
|
||||
fixedFont = consolasFont;
|
||||
// Bump up the font size by one point to match the default font
|
||||
fixedFont.setPointSize(fixedFont.pointSize() + 1);
|
||||
}
|
||||
#endif
|
||||
#ifdef Q_OS_MACOS
|
||||
// Qt doesn't choose a monospace font correctly on macOS
|
||||
fixedFont = QFontDatabase().font("Menlo", fixedFont.styleName(), fixedFont.pointSize());
|
||||
#endif
|
||||
|
||||
#ifndef Q_OS_WIN
|
||||
fixedFont.setPointSize(qApp->font().pointSize());
|
||||
#endif
|
||||
return fixedFont;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue