summaryrefslogtreecommitdiffstats
path: root/qt-ui/printlayout.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-11 21:39:44 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-11 21:39:44 -0700
commit6699dab9522420991b961d1006fa75bb6dbbfcaf (patch)
treed70c3c70a2709b5fae2ae77a17750db6814b564f /qt-ui/printlayout.cpp
parent2552b027aea21a222b4087d5616c452a4bca1dde (diff)
downloadsubsurface-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.cpp6
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);