diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-08-27 06:41:33 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-27 15:46:29 -0700 |
commit | 45ee3983b7c512309a4e62ff4787f67b2446bb28 (patch) | |
tree | 1a8864ba185223ddb4401522532396cd81abe460 /qt-ui | |
parent | ab4d232bc22d04dbc6575dfe1e312f0eb31e7df9 (diff) | |
download | subsurface-45ee3983b7c512309a4e62ff4787f67b2446bb28.tar.gz |
Use one consistent font size throughout the app
Let's see how much people notice it / hate it.
Fixes #712
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index a33b9310c..5266130b4 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -28,7 +28,7 @@ QFont defaultModelFont() { QFont font; - font.setPointSizeF(font.pointSizeF() * 0.8); +// font.setPointSizeF(font.pointSizeF() * 0.8); return font; } |