QmlDesigner: Slightly increase font size on high DPI displays

Change-Id: I8ed2bd45217aa5ff41768048f5fa6627a5895f4f
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Reviewed-by: Brook Cronin <brook.cronin@qt.io>
This commit is contained in:
Thomas Hartmann
2018-04-16 12:40:18 +02:00
committed by Brook Cronin
parent dcd8d37f35
commit cedd104009

View File

@@ -108,7 +108,7 @@ QColor Theme::getColor(Theme::Color role)
int Theme::smallFontPixelSize() const int Theme::smallFontPixelSize() const
{ {
if (highPixelDensity()) if (highPixelDensity())
return 12; return 13;
return 9; return 9;
} }