From b2e1d8a38c6941e82641c65e1298cd53cf8664f4 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 18 Feb 2015 14:37:56 -0800 Subject: [PATCH] Remove font scaling based on system DPI --- interface/src/UIUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/UIUtil.cpp b/interface/src/UIUtil.cpp index d39b3229aa..9de2ad35e9 100644 --- a/interface/src/UIUtil.cpp +++ b/interface/src/UIUtil.cpp @@ -58,7 +58,7 @@ void UIUtil::scaleWidgetFontSizes(QWidget* widget) { // Scale the font further by the system's DPI settings. If using a 2x high-dpi screen // on Windows, for example, the font will be further scaled by: 192.0 / 96.0 = 2.0 // This would give a final scale of: 0.75 * 2.0 = 1.5 - fontScale *= (glCanvas->logicalDpiX() / NATIVE_DPI); + // fontScale *= (glCanvas->logicalDpiX() / NATIVE_DPI); qDebug() << "Scaling widgets by: " << fontScale;