diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-07-11 21:39:44 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-11 21:39:44 -0700 |
commit | 6699dab9522420991b961d1006fa75bb6dbbfcaf (patch) | |
tree | d70c3c70a2709b5fae2ae77a17750db6814b564f /qt-ui/printlayout.cpp | |
parent | 2552b027aea21a222b4087d5616c452a4bca1dde (diff) | |
download | subsurface-6699dab9522420991b961d1006fa75bb6dbbfcaf.tar.gz |
Printing: print tags instead of max CNS
And re-order / re-size the fields so more useful information is actually
shown.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/printlayout.cpp')
-rw-r--r-- | qt-ui/printlayout.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/printlayout.cpp b/qt-ui/printlayout.cpp index 59b6d392a..bae468c44 100644 --- a/qt-ui/printlayout.cpp +++ b/qt-ui/printlayout.cpp @@ -42,9 +42,9 @@ PrintLayout::PrintLayout(PrintDialog *dialogPtr, QPrinter *printerPtr, struct op const int dw = 20; // base percentage profilePrintColumnWidths.append(dw); profilePrintColumnWidths.append(dw); - profilePrintColumnWidths.append(dw - 3); - profilePrintColumnWidths.append(dw - 3); - profilePrintColumnWidths.append(dw + 6); // fit to 100% + profilePrintColumnWidths.append(dw + 8); + profilePrintColumnWidths.append(dw - 4); + profilePrintColumnWidths.append(dw - 4); // fit to 100% const int sr = 12; // smallest row height in pixels profilePrintRowHeights.append(sr); profilePrintRowHeights.append(sr + 4); |