Add qDebug message to scaleWidgetFontSizes

This commit is contained in:
Ryan Huffman 2015-02-18 14:16:33 -08:00
parent ff1fb07b2d
commit 7dab39a2f1

View file

@ -60,6 +60,8 @@ void UIUtil::scaleWidgetFontSizes(QWidget* widget) {
// This would give a final scale of: 0.75 * 2.0 = 1.5
fontScale *= (glCanvas->logicalDpiX() / NATIVE_DPI);
qDebug() << "Scaling widgets by: " << fontScale;
internalScaleWidgetFontSizes(widget, fontScale);
}