printlayout.cpp: Increase the font size in tables bellow profile

Because of varying font (screen) DPI we use pixel sized fonts
when printing. Apparently 8px does not look that good on Windows
default fonts, but kinda OK on Linux. We compensate by
increasing the font size and table rows to 9px.

Also decrease the padding between the table and profile to 5px.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2013-10-15 12:54:17 +03:00 committed by Dirk Hohndel
parent f818ece074
commit 88b1e09dee
2 changed files with 3 additions and 3 deletions

View file

@ -1590,7 +1590,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
}
case Qt::FontRole: {
QFont font;
const int baseSize = 8;
const int baseSize = 9;
// dive #
if (row == 0 && col == 0) {
font.setBold(true);