summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2014-07-09 23:23:25 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-09 13:48:16 -0700
commitc1d63f32d60212a60fe633ef1c3a77d23da2760d (patch)
tree55295d981c2f98f408e9fcc31c5987a097d65472
parentffb441aa84a0867e275dd212a480a336b3547f89 (diff)
downloadsubsurface-c1d63f32d60212a60fe633ef1c3a77d23da2760d.tar.gz
Print: make the profile table font size 7px
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/models.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index 7d46d0ae4..aa3f302b2 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -1967,7 +1967,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
}
case Qt::FontRole: {
QFont font;
- const int baseSize = 9;
+ const int baseSize = 7;
// dive #
if (row == 0 && col == 0) {
font.setBold(true);